Docs/MCP

Model Context Protocol

MCP is the protocol your AI agent speaks to discover and invoke tools. Connect AI exposes a managed MCP server so any MCP-compatible client (Claude Desktop, Cursor, custom) can use your tool catalog with one config block.

Why MCP

  • Standard. Anthropic, OpenAI, Microsoft, AWS Bedrock all support MCP.
  • Discovery built-in. Agents fetch the tool list dynamically. No hardcoded function definitions.
  • Streaming. SSE transport gives low-latency tool calls.

What our MCP server provides

Two system tools always present:

  • sys_search_tools — semantic search across your tool catalog.
  • sys_check_auth — verifies if a given app is authorized for the current end-user.

Plus every Tool in every App you own, namespaced as {appName}.{toolName}.

Endpoint

POST/mcpServer

SSE transport. Auth: same Bearer + Client-Id headers.

Next steps: