A public proxy over Sunex's production lens and imager catalog that needs zero authentication. Five tools let you search sensors by part number or resolution, find compatible lenses for a given imager (with FOV and angular resolution computed), and pull pricing from optics-online.com. Built as a Cloudflare Worker with streamable HTTP transport and a legacy SSE fallback. Useful when you're spec'ing machine vision or security camera systems and want Claude to match sensors to optics on the fly instead of hunting through PDFs. The recommend_lens_for_imager tool is the fastest path: feed it an IMX577 and an F-number and get back a filtered list with geometry already worked out.
A public Model Context Protocol server that lets AI assistants search Sunex's lens and imager catalog in natural language.
Live endpoint: https://mcp.sunex-ai.com/mcp
Landing page: sunex-ai.com
Transport: Streamable HTTP (MCP spec 2025-03-26). Legacy SSE endpoint at /sse preserved for older clients.
Settings → Connectors → Add custom connector → paste https://mcp.sunex-ai.com/mcp
Add to your MCP config with transport streamable-http and the URL above.
Via any MCP → OpenAPI bridge as a custom GPT Action.
| Tool | What it does |
|---|---|
recommend_lens_for_imager | Give it an imager PN → compatible lenses with FOV and angular resolution. One shot. |
search_imagers | Find sensors by PN, manufacturer, or resolution class. |
get_imager_detail | Full sensor specs plus computed geometry (width / height / diagonal in mm). |
find_compatible_lenses | Given pixel count + pitch, return lenses whose image circle covers the sensor. |
search_products | Full catalog search by PN or keyword, with sample pricing and RFQ links. |
Claude / Cursor / ChatGPT → mcp.sunex-ai.com → optics-online.com/api/v1
(MCP client) (Cloudflare Worker) (ASP JSON API)
Thin proxy on Cloudflare Workers (free tier) over Sunex's production catalog. Streamable HTTP transport per MCP spec 2025-03-26 (with legacy SSE preserved). No auth, read-only.
| Path | Purpose |
|---|---|
/mcp | Primary — Streamable HTTP transport (current MCP standard) |
/sse | Legacy SSE transport, preserved for backward compatibility |
/.well-known/mcp.json | Public discovery manifest |
/ | Landing page with install instructions |
git clone https://github.com/Sunex-AI/Optics-mcp
cd Optics-mcp
npm install
npx wrangler login
npx wrangler deploy
from mcp import ClientSession
from mcp.client.streamable_http import streamablehttp_client
async with streamablehttp_client("https://mcp.sunex-ai.com/mcp") as (r, w, _):
async with ClientSession(r, w) as session:
await session.initialize()
result = await session.call_tool(
"recommend_lens_for_imager",
{"imagerPn": "IMX577", "fNumMax": 2.0}
)
Public manifest: https://mcp.sunex-ai.com/.well-known/mcp.json
Issues and PRs welcome. For requests about the backend API (pricing, additional catalog fields, new endpoints), email support@sunex.com.
MIT — see LICENSE.
com.mcparmory/google-search
io.github.pipeworx-io/brave-search
marcopesani/mcp-server-serper
brave/brave-search-mcp-server
com.mcparmory/google-search-console
acamolese/google-search-console-mcp