For AI agents

The 10x GTM MCP server.

Query our go-to-market tool reviews from any AI agent. A hosted Model Context Protocol server, read-only, no key required. Point your agent at one URL and it can search, read, and compare 110 evidence-led tool reviews on demand.

Endpoint

Streamable HTTP MCP. No authentication. Read-only.

MCP endpoint
https://10xgtm.ai/api/mcp

Connect

Claude Code

terminal
claude mcp add --transport http 10xgtm https://10xgtm.ai/api/mcp

Claude Desktop & Cursor

Add this to your MCP config (claude_desktop_config.json or .cursor/mcp.json). It bridges the remote server through mcp-remote.

config JSON
{
  "mcpServers": {
    "10xgtm": {
      "command": "npx",
      "args": ["mcp-remote", "https://10xgtm.ai/api/mcp"]
    }
  }
}

Any MCP client

Use transport streamable-http and the endpoint above. A discovery card is published at /.well-known/mcp/server-card.json.

Tools

search_tools

Search the directory by keyword and/or category.

{ "query": "ai crm", "category": "crm-lifecycle-customer-marketing", "limit": 10 }
get_tool_review

Full review for one tool: what it does, pricing, where it disappoints, best-for, and the review URL.

{ "slug": "clarify" }
compare_tools

Compare 2 to 4 tools side by side.

{ "slugs": ["clay", "apollo"] }
list_categories

Every category with its slug, name, and tool count.

{ }

Try it

A raw JSON-RPC call, no client needed:

curl
curl -s https://10xgtm.ai/api/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call",
       "params":{"name":"get_tool_review","arguments":{"slug":"clarify"}}}'

Notes

  • Read-only. The server exposes review data only. It never writes, and holds no user data or secrets.
  • Fair use. The endpoint is rate limited per IP. Heavy or automated bulk use should cache the /mcp-tools.json corpus instead of hammering the API.
  • Freshness. The corpus rebuilds with the site, so reviews stay current.