Hosted MCP meta tools
In-app and coding agents use Corsair’s MCP server at runtime. It exposeslist_operations, get_schema, and run_script so the agent can pick operations dynamically without the full catalog in context.
Setup agents wiring direct execution do not need these tools — fetch paths and schemas from the integrations catalog and call tenant.run().
| Tool | Who uses it |
|---|---|
| Integrations catalog | Setup agents — list paths, read schemas, then tenant.run() |
list_operations / get_schema / run_script | Runtime chat/coding agents via MCP |
Quick example (Vercel AI SDK)
When your backend already has the developer API key, usetenant.mcp.createVercelClient() — no separate MCP secret required:
Alternative: tenant MCP key
If you prefer a dedicated bearer token per agent (e.g. for a user-facing connector), create a key and passurl + apiKey to the adapter helpers:
Framework guides
Vercel AI SDK
createVercelClient() or createVercelAiMcpClient()OpenAI
Responses API and OpenAI Agents SDK
Claude
Claude Agent SDK
mcpServersCustom connector
Any HTTP MCP client