Where is Agent Ready listed?
The MCP server is published across the major MCP registries and marketplaces. Each link below opens the canonical listing for the channel.
Hosted MCP server registry and proxy. Includes the .mcpb bundle for local installs.
Official Model Context Protocol registry. Namespace: io.github.mlava/agent-ready-mcp.
Published as agent-ready-mcp. Installed via npx on demand — no global install needed.
Source, issue tracker, MIT licence, and v0.1.1 release with the .mcpb bundle attached.
Community MCP server directory. Listing page surfaces the install snippet and tool/prompt rundown.
What does the MCP server expose?
Two tools, three prompts, one Claude Skill descriptor. All four are advertised in the discovery manifest at /.well-known/mcp.json and surfaced in any MCP client’s tools/prompts panels.
| Kind | Name | Purpose |
|---|---|---|
| tool | scan_site | Run a fresh scan against a URL. |
| tool | get_scan | Fetch a previous scan by id. |
| prompt | scan | Fresh scan + high-level summary. |
| prompt | interpret_scan | Plain-English explanation of a scan’s findings. |
| prompt | remediation_plan | Prioritised fix-it doc (optional focus: “seo” or “agents”). |
| resource | methodology | Scoring formula, rating bands, JS-rendering handling. |
| resource | checks | Reference table of all 59 check IDs. |
| resource | llms.txt | Agent Ready’s own /llms.txt mirrored. |
| resource | specs | Canonical URLs for the seven specs we validate. |
| skill | agent-ready | Anthropic Claude Skill descriptor for activation routing. |
How do the three install paths differ?
All three call the same scanner with the same API key. The choice comes down to which transport your MCP client supports best.
- Remote (HTTP) — point the client at
https://agent-ready.dev/api/v1/mcpwith a Bearer header. Lowest-latency option for clients that speak Streamable HTTP MCP natively (Claude Desktop, Cursor, the Vercel MCP consumer). - Local (npm) — spawn
npx -y agent-ready-mcp@latestas a stdio child process. Same key delivered viaAGENT_READY_API_KEYenv var. The npm package is a thin stdio wrapper that forwards to the hosted REST API. Use this for stdio-only clients or when you don’t want to lean on the communitymcp-remotebridge. - mcp-remote bridge— community shim that exposes a remote HTTP MCP server as a local stdio process. Use this if your client only speaks stdio and you don’t want to install a per-server package.
Frequently asked questions
What's the difference between the hosted endpoint and the npm package?
Both call the same scanner and require the same Pro API key. The hosted endpoint at agent-ready.dev/api/v1/mcp speaks Streamable HTTP — Claude Desktop and Cursor connect to it directly. The npm package (agent-ready-mcp) is a stdio wrapper that any MCP client can spawn locally; it forwards requests to the same hosted endpoint over HTTPS. Pick HTTP for native clients, npm for stdio-only clients (some IDE plugins, Cline) or when you want zero round-trip via the community mcp-remote bridge.
Which MCP clients can I use this with?
Claude Desktop, Claude Code, Cursor, VS Code (with the MCP extension), Cline, Windsurf, and any other client that speaks the Model Context Protocol. The hosted HTTP endpoint covers clients that support remote MCP servers; the npm package covers stdio-only clients via npx.
What tools, prompts, and resources does the server expose?
Two tools — scan_site (run a fresh agent-readability scan against a URL) and get_scan (fetch a previous scan by id). Three prompts — scan, interpret_scan, remediation_plan — that wire the tools into end-to-end workflows. Four resources — methodology (the scoring formula), checks (table of all 59 check IDs), llms.txt (Agent Ready's own /llms.txt), and specs (canonical URLs for the seven specs we validate). One Claude Skill descriptor (skills/agent-ready/SKILL.md inside the npm package) for activation routing.
Do I need a paid plan?
Yes. The MCP server uses the same Bearer-token authentication as the REST API and only accepts Pro or Team keys. Free-tier scans are available through the web UI but not via the MCP server. Issue a key from your dashboard after upgrading.
Where can I find the source and report issues?
GitHub at github.com/mlava/agent-ready-mcp. The repo includes the full source, test suite, build pipeline, manifest.json (Glama Marketplace), server.json (MCP registry), and glama.json (Glama maintainer claim). MIT-licensed.