AgentReady MCP Server
모든 웹사이트를 AI 에이전트가 질의 가능하게 만듭니다 — 사이트를 인덱싱하고 RAG를 통해 인용된 답변으로 질문할 수 있습니다.
문서
@agentreadyweb/mcp
Connect any MCP client to AgentReady — a hosted service that makes any website queryable by AI agents.
Claude Desktop
Add this to your Claude Desktop config file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"agentready": {
"command": "npx",
"args": ["-y", "@agentreadyweb/mcp"]
}
}
}
Restart Claude Desktop. You'll have two tools available:
list_sites— see all indexed websitesask_site— query any site by domain
Available tools
list_sites
Lists all websites indexed by AgentReady.
ask_site
ask_site(domain: string, query: string)
Ask a question about any indexed site and get a cited answer grounded in its content.
Example: ask_site("example.com", "What does this site do?")
If a domain isn't indexed yet, submit it at agentready.it.com first, then query it here.
Environment variables
| Variable | Default | Description |
|---|---|---|
AGENTREADY_MCP_URL | https://www.agentready.it.com/api/mcp | Override the MCP endpoint (for self-hosted) |