Install the apitree MCP Server so AI Agents can discover and call APIs automatically via the Model Context Protocol.
Add to your claude_desktop_config.json:
{
"mcpServers": {
"apitree": {
"command": "npx",
"args": ["-y", "@apitree/mcp-server"],
"env": {
"APITREE_API_URL": "https://apitree.ai"
}
}
}
}claude mcp add apitree -- npx -y @apitree/mcp-server
Add to .cursor/mcp.json in your project:
{
"mcpServers": {
"apitree": {
"command": "npx",
"args": ["-y", "@apitree/mcp-server"]
}
}
}Once installed, just ask your AI Agent naturally:
> "Find an API for weather data" > "Call the IP geolocation API for 8.8.8.8" > "What APIs are available for financial data?"
The agent uses search_apis and call_api tools behind the scenes.