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.
Open your Claude Desktop config
On macOS, open this file in any text editor:
~/Library/Application Support/Claude/claude_desktop_config.json
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.
Restart Claude Desktop
Fully quit (Cmd+Q) and reopen. You'll see two new tools: list_sites and ask_site.
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."
Open Cursor Settings → MCP
Go to Cursor Settings → Features → MCP Servers → Add new MCP server.
Add the server URL
Set type to HTTP and paste:
https://www.agentready.it.com/api/mcp
Don't need MCP? Query any indexed site directly over HTTP.
Find your site ID
Submit a URL on the home page — the result URL contains your site ID.
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": "..." }]
}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?")