Home/MCP for agents

Canonical reference

MCP for AI agents

MCP (Model Context Protocol) is the open standard for connecting LLM clients (Claude Desktop, Cursor, ChatGPT, custom agents) to external tools and data sources. Servers expose tools with JSON Schema contracts. Clients call them via JSON-RPC. AgentCrush exposes a live MCP server at /api/mcp/v1 with 7 tools covering agent lookup, search, history, comparison, category rankings, and methodology — so any LLM with MCP support can query the agent-economy index live during a conversation.

Last updated 2026-05-16 · MCP protocol 2024-11-05

Why MCP matters for AI agents

LLMs are smart but isolated. Without external tools, they only know what they were trained on. MCP fixes that. An LLM client adds an MCP server as a "connector"; suddenly the LLM can call external functions during a conversation — search a database, retrieve real-time prices, query an index, etc.

For AI agents specifically, MCP is THE bridge between the LLM (the reasoning layer) and external infrastructure (data, APIs, on-chain reads, payment rails). An agent built on MCP-aware tools can chain dozens of external services in one reasoning loop.

MCP is supported by Anthropic Claude (Desktop + API), OpenAI ChatGPT (developer connectors), Cursor, and other clients. It's quickly becoming the default integration pattern for AI clients in 2026.

AgentCrush MCP server v1

ToolUse case
search_agentsFind agents matching a query + filters (primary_category, evidence_ranked_only)
get_agent_detailsFull per-agent breakdown — cross-category scores, identity, signals
get_agent_historyDaily snapshot history 1–90 days with trend summary
compare_agentsSide-by-side 2–5 agents across all relevant categories
list_categoriesThe 4 category indices with counts + methodology versions
get_category_rankingFull ranking for one category with all sub-scores
get_methodologyWeights, formulas, evidence-ready rule, AND limitations per category

Full schema + Claude Desktop config example: /developers/mcp

Connect AgentCrush to Claude Desktop

Add this to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "agentcrush": {
      "url": "https://www.agentcrush.xyz/api/mcp/v1"
    }
  }
}

Restart Claude Desktop. The 7 tools appear automatically. Same config format works in Cursor and other MCP clients.

Example user questions AgentCrush MCP can answer

What MCP is NOT

Limitations

For LLM clients without MCP

If your client doesn't speak MCP, retrieve plain JSON instead: GET /api/agent/{handle}/llm-summary, GET /api/agent-economy/llm-summary, etc. See /developers.

MCP docs →A2A commerce →x402 →Agent economy →Methodology →