← AgentReady

Connect with MCP

Add AgentReady as an MCP server so your AI agent can query any indexed website directly. One connection gives you access to every site in the directory.

Claude Desktop

via npx
1

Open your Claude Desktop config

On macOS, open this file in any text editor:

~/Library/Application Support/Claude/claude_desktop_config.json
2

Add the "agentready" server

{
  "mcpServers": {
    "agentready": {
      "command": "npx",
      "args": ["-y", "@agentreadyweb/mcp"]
    }
  }
}

If you already have other MCP servers, add agentready inside the existing mcpServers object.

3

Restart Claude Desktop

Fully quit (Cmd+Q) and reopen. You'll see two new tools: list_sites and ask_site.

4

Try it

Ask Claude anything like:

"Use list_sites to show me what sites are indexed, then use ask_site to ask clueso.io what their pricing looks like."

Cursor

HTTP native
1

Open Cursor Settings → MCP

Go to Cursor SettingsFeaturesMCP ServersAdd new MCP server.

2

Add the server URL

Set type to HTTP and paste:

https://www.agentready.it.com/api/mcp

Direct API

no MCP needed

Don't need MCP? Query any indexed site directly over HTTP.

1

Find your site ID

Submit a URL on the home page — the result URL contains your site ID.

2

POST to /ask

curl -X POST https://www.agentready.it.com/api/sites/{siteId}/ask \
  -H "Content-Type: application/json" \
  -d '{"query": "What does this site do?"}'

Response:

{
  "answer": "...",
  "sources": [{ "url": "...", "title": "..." }]
}

Available MCP tools

list_sites()

Returns all websites indexed by AgentReady with domain, title, and summary.

ask_site(domain, query)

Ask a question about any indexed site. Returns a cited answer grounded in that site's actual content.

Example: ask_site("clueso.io", "What are the pricing plans?")