AI Agent Pages

Integrations

Developers

Machine-readable directory of agent-ready websites. Public reads — no API key required for listing data.

MCP

https://www.aiagentpages.com/mcp

Streamable HTTP · JSON-RPC tools

REST API v1

https://www.aiagentpages.com/api/v1/listings

JSON list + spec by slug

Rate limits (provisional)

We have not finalized production rate limits yet. Documented target: 60 requests / minute / IP on public MCP and REST reads. Limits may be enforced later; check response headers X-RateLimit-Policy. Write operations (submit, claim) use auth and stricter controls.

Quick start — MCP

List tools:

curl -X POST https://www.aiagentpages.com/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","method":"tools/list","id":1}'

Search listings (example):

curl -X POST https://www.aiagentpages.com/mcp \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc":"2.0",
    "method":"tools/call",
    "params":{
      "name":"search_listings",
      "arguments":{"query":"saas","limit":5}
    },
    "id":2
  }'

Claude Desktop (stdio bridge): add mcp-remote https://www.aiagentpages.com/mcp — see MCP docs for your client.

REST v1

  • GET /api/v1/listings — page, per_page, category, q, ucp_ready=1
  • GET /api/v1/listings/{slug} — full spec (same as /api/listings/{slug}/spec)
  • GET /listings/{slug}/llms.txt — per-listing markdown + JSON block
curl "https://www.aiagentpages.com/api/v1/listings?per_page=5&ucp_ready=1"

MCP tools (public)

  • list_listings — browse approved listings
  • search_listings — query + category
  • search_commerce_listings — UCP-ready filter
  • get_listing / get_listing_spec — detail
  • get_readiness_report — stored readiness breakdown

API catalog → · Agent connect (delegation) →