We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/i-richardwang/Vision-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
sse_server.py•172 B
from starlette.applications import Starlette
from starlette.routing import Mount
from vision_mcp.server import mcp
app = Starlette(routes=[Mount("/", app=mcp.sse_app())])