Connecting AI Tools

How to connect Attend-Go to AI development tools and custom agents.

Serverless Architecture

Attend-Go's MCP endpoint (/api/mcp) is a highly optimized, stateless JSON-RPC POST endpoint. It does NOT support long-lived SSE (Server-Sent Events) streaming. Because of this, native IDEs like Cursor and Claude Desktop cannot connect directly to the remote URL.

Claude Desktop & Cursor IDE

To connect native IDEs that require SSE or STDIO, you must run a local MCP proxy (a simple bridge script) on your machine. This proxy connects to your IDE locally via STDIO, and forwards the JSON-RPC payloads to Attend-Go over standard HTTP POST requests using your API key.

Custom Agents & Integrations

If you are building your own AI agent (e.g., using LangChain, AutoGen, or custom scripts), you can bypass proxies entirely. Simply send standard JSON-RPC HTTP POST requests to https://attend-go.com/api/mcp with your API key in the Authorization header. Each request is stateless and executes instantly.