A MetaMCP Endpoint is a public interface that exposes a namespace as an accessible MCP server. Endpoints handle authentication and provide URLs that MCP clients can connect to.

What are Endpoints?

Endpoints serve as the bridge between your internal namespaces and external MCP clients:
  • Expose namespaces as public MCP servers
  • Handle authentication via API keys
  • Support multiple transports (SSE, Streamable HTTP, OpenAPI)

Example Endpoint URLs

https://your-metamcp.com/metamcp/my-endpoint/sse
https://your-metamcp.com/metamcp/my-endpoint/mcp
https://your-metamcp.com/metamcp/my-endpoint/api
https://your-metamcp.com/metamcp/my-endpoint/api/openapi.json

Endpoint Management

Available Actions

From the endpoints dashboard, you can:
  • Edit endpoint settings
  • Copy URLs for different transport types
  • View the associated namespace
  • Delete endpoints

URL Formats

Each endpoint provides multiple URL formats:
  • SSE: /metamcp/{name}/sse
  • Streamable HTTP: /metamcp/{name}/mcp
  • OpenAPI: /metamcp/{name}/api
  • OpenAPI Schema: /metamcp/{name}/api/openapi.json

Next Steps