Coding agent
How to make your favorite coding agent aware of Apizee APIs
Apizee’s developer documentation exposes a Model Context Protocol (MCP) server that allows AI-powered editors and coding agents to query documentation natively.
Your MCP server URL is:
https://developer.apizee.com/apizee-docs/~gitbook/mcpWhen connected to your editor, your assistant (Claude, Copilot, Cursor Agent, Windsurf AI) can retrieve documentation, search pages, and use documentation-aware tools without scraping or copy/pasting.
This guide walks you through steps per tool.
Cursor
Steps
Open Cursor.
Go to Settings → MCP Servers.
Choose Global or Workspace configuration.
Click Add MCP Server.
Configure:
Name:
apizee-docsTransport:
httpURL:
https://developer.apizee.com/apizee-docs/~gitbook/mcp
Save.
Validation
Open the Cursor Agent and type:
“List MCP servers” or “Use the apizee-docs server to search for X”
Visual Studio Code (GitHub Copilot)
Steps
Click on any page actions button (top right) in the Apizee documentation.
Select the "Connect to VS Code" menu item
Authorize to open Visual Studio Code from the browser.
In Visual Studio Code, click on Install or Install in Workspace.
Reload VS Code.
Validation
Command palette →
MCP: List ServersYou should see apizee-docs.
Claude Desktop (Claude Code)
Claude Desktop loads MCP configuration from a local config file.
Steps
Close Claude Desktop completely.
Open the config file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.jsonLinux:
~/.config/Claude/claude_desktop_config.jsonAdd the server:
{
"mcpServers": {
"apizee-docs": {
"transport": "http",
"url": "https://developer.apizee.com/apizee-docs/~gitbook/mcp"
}
}
}Save the file and restart Claude Desktop.
Validation
Ask Claude:
“Connect to the apizee-docs MCP server and list its tools.”
Windsurf (Codeium IDE)
Steps
Open Windsurf.
Open Command Palette:
macOS:
Cmd + KWindows/Linux:
Ctrl + K
Search for: “AI: Configure MCP Server”
Click Add MCP Server.
Fill in:
Name:
apizee-docsTransport:
HTTPURL:
https://developer.apizee.com/apizee-docs/~gitbook/mcp
Save the configuration.
Restart Windsurf (important).
Validation
Open the AI assistant panel and type:
“Show my MCP servers.”
You should see apizee-docs.
Best Practices
Your Apizee Developer Docs MCP endpoint is public and requires no authentication, making integration straightforward.
If running behind a corporate firewall, ensure HTTPS access to:
developer.apizee.comIf MCP tools do not appear, restart the IDE.
Last updated