Connect AI assistants (Cursor, Claude, VS Code, ChatGPT, Windsurf) to APIpie documentation using the Model Context Protocol (MCP).
APIpie exposes a read-only MCP server that allows AI tools to:
This MCP server is documentation-only. It does not provide live platform APIs, routing execution, provider metadata, pricing, or write access.
Use this MCP server URL:
https://apipie.ai/mcp
list-pagesLists all available documentation pages (title, path, description).
| Parameter | Type | Description |
|---|---|---|
locale | string (optional) | Filter pages by locale |
get-pageRetrieves full markdown for a specific page.
| Parameter | Type | Description |
|---|---|---|
path | string (required) | Page path (e.g. /routing/overview) |
To avoid confusion for agent systems:
If it’s not listed under Available Tools, it does not exist.
APIpie Docshttps://apipie.ai/mcpNoneYou can then enable the connector in a conversation and ask:
/routing/overview and summarize it”claude mcp add --transport http apipie-docs https://apipie.ai/mcp
{
"mcpServers": {
"apipie-docs": {
"command": "npx",
"args": ["mcp-remote", "https://apipie.ai/mcp"]
}
}
}
If your environment supports MCP deep links, add the server in Cursor via Settings → Tools & MCP using:
apipie-docshttphttps://apipie.ai/mcpCreate or edit:
.cursor/mcp.json
{
"mcpServers": {
"apipie-docs": {
"type": "http",
"url": "https://apipie.ai/mcp"
}
}
}
Create or edit:
.vscode/mcp.json
{
"servers": {
"apipie-docs": {
"type": "http",
"url": "https://apipie.ai/mcp"
}
}
}
Ensure you have GitHub Copilot + Copilot Chat installed if you want Copilot to use it.
{
"mcpServers": {
"apipie-docs": {
"type": "http",
"url": "https://apipie.ai/mcp"
}
}
}
Add to your Zed settings JSON:
{
"context_servers": {
"apipie-docs": {
"source": "custom",
"command": "npx",
"args": ["mcp-remote", "https://apipie.ai/mcp"],
"env": {}
}
}
}
After connecting, ask your assistant:
list-pages and show me the first 10 results.”get-page for the routing overview page and summarize it.”If those work, the MCP connection is correct.
Once configured, AI assistants can reliably do:
Anything involving live routing, models, or account state requires APIpie’s API (not MCP).