Developer Tools
agent-ready.dev
Scans websites for AI agent readability, returning agent-readability scores and improvement suggestions.
ENDPOINT 1
https://agent-ready.dev/api/apps/mcp
MCP server metadata
- Name
- agent-ready-apps
- Version
- 1.0.0
Agent Ready is an MCP App (OpenAI Apps SDK / MCP-UI): it renders an interactive score-card widget directly inline in the conversation. The app exposes a ui:// HTML resource (ui://widget/agent-ready-score.html); scan_site and get_scan are UI-bound via _meta.ui.resourceUri, so calling them displays the interactive Agent Ready score card. Call scan_site with a URL to scan a public website and render its 0–100 Vercel agent-readability score, an llms.txt score, and a per-check breakdown (Site, Page, llms.txt, Protocol) with a plain-English fix for each issue. Use get_scan with a scan id to re-fetch or poll a still-running scan and refresh the card. The ask tool runs a natural-language search (NLWeb /ask) over Agent Ready's own content — the scoring methodology, the check registry, the specs it validates, and the content library (explainers, comparisons, how-to guides, glossary) — and returns Schema.org-typed text results. Read-only; only public URLs are scanned (private, local, and reserved addresses are refused). No authentication or API key required. The server also exposes discovery resources (scoring methodology, the full check registry, Agent Ready's own llms.txt, and the validated specifications) and workflow prompts (scan, interpret_scan, remediation_plan) that clients can read without a credential.
Known tools 3
scan_siteScans a public website for how readable it is to AI agents and crawlers, returning a 0–100 Vercel agent-readability score, an llms.txt score, and a per-check breakdown with fixes.
Inferred read-onlyget_scanFetches a previously started scan by its id — use this to check on a scan that was still running.
Inferred read-onlyaskNatural-language search (NLWeb /ask) over Agent Ready's own content — scoring methodology, the check registry, the specs it validates, and the content library (explainers, comparisons, how-to guides, glossary).
Inferred read-onlyCONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.agent-ready-apps]
url = "https://agent-ready.dev/api/apps/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"agent-ready-apps": {
"type": "http",
"url": "https://agent-ready.dev/api/apps/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: agent-ready-apps
Remote MCP URL: https://agent-ready.dev/api/apps/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"agent-ready-apps": {
"url": "https://agent-ready.dev/api/apps/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"agent-ready-apps": {
"type": "http",
"url": "https://agent-ready.dev/api/apps/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "agent-ready-apps",
"transport": "streamable-http",
"url": "https://agent-ready.dev/api/apps/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
ENDPOINT 2
https://agent-ready.dev/api/v1/mcp
MCP server metadata
- Name
- agent-ready
- Version
- 1.0.0
Agent Ready scans any public website for AI agent readability and returns scores plus per-check remediation. Tools: scan_site (run a scan on a URL; long scans return an id to poll), get_scan (fetch a scan by id), ask (natural-language search over Agent Ready's scoring methodology, check registry, and the specs it validates). Resources expose the methodology, the full check registry, Agent Ready's own llms.txt, and the validated specifications. Discovery (initialize, tools/list, resources/list, resources/read, prompts) is public so clients can introspect the server without a credential; executing scan_site / get_scan via tools/call requires a Bearer API key (issue one at https://agent-ready.dev/dashboard/api-keys). Read-only; only public URLs are scanned (private, local, and reserved addresses are refused).
Known tools 3
askNatural-language search (NLWeb /ask) over Agent Ready's own content — scoring methodology, the check registry, the specs it validates, and the content library (explainers, comparisons, how-to guides, glossary).
Inferred read-onlyCONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.agent-ready]
url = "https://agent-ready.dev/api/v1/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"agent-ready": {
"type": "http",
"url": "https://agent-ready.dev/api/v1/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: agent-ready
Remote MCP URL: https://agent-ready.dev/api/v1/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"agent-ready": {
"url": "https://agent-ready.dev/api/v1/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"agent-ready": {
"type": "http",
"url": "https://agent-ready.dev/api/v1/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "agent-ready",
"transport": "streamable-http",
"url": "https://agent-ready.dev/api/v1/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
ENDPOINT 3
https://mcp.agent-ready.dev/api/apps/mcp
MCP server metadata
- Name
- agent-ready-apps
- Version
- 1.0.0
Agent Ready is an MCP App (OpenAI Apps SDK / MCP-UI): it renders an interactive score-card widget directly inline in the conversation. The app exposes a ui:// HTML resource (ui://widget/agent-ready-score.html); scan_site and get_scan are UI-bound via _meta.ui.resourceUri, so calling them displays the interactive Agent Ready score card. Call scan_site with a URL to scan a public website and render its 0–100 Vercel agent-readability score, an llms.txt score, and a per-check breakdown (Site, Page, llms.txt, Protocol) with a plain-English fix for each issue. Use get_scan with a scan id to re-fetch or poll a still-running scan and refresh the card. The ask tool runs a natural-language search (NLWeb /ask) over Agent Ready's own content — the scoring methodology, the check registry, the specs it validates, and the content library (explainers, comparisons, how-to guides, glossary) — and returns Schema.org-typed text results. Read-only; only public URLs are scanned (private, local, and reserved addresses are refused). No authentication or API key required. The server also exposes discovery resources (scoring methodology, the full check registry, Agent Ready's own llms.txt, and the validated specifications) and workflow prompts (scan, interpret_scan, remediation_plan) that clients can read without a credential.
Known tools 3
scan_siteScans a public website for how readable it is to AI agents and crawlers, returning a 0–100 Vercel agent-readability score, an llms.txt score, and a per-check breakdown with fixes.
Inferred read-onlyget_scanFetches a previously started scan by its id — use this to check on a scan that was still running.
Inferred read-onlyaskNatural-language search (NLWeb /ask) over Agent Ready's own content — scoring methodology, the check registry, the specs it validates, and the content library (explainers, comparisons, how-to guides, glossary).
Inferred read-onlyCONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.agent-ready-apps]
url = "https://mcp.agent-ready.dev/api/apps/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"agent-ready-apps": {
"type": "http",
"url": "https://mcp.agent-ready.dev/api/apps/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: agent-ready-apps
Remote MCP URL: https://mcp.agent-ready.dev/api/apps/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"agent-ready-apps": {
"url": "https://mcp.agent-ready.dev/api/apps/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"agent-ready-apps": {
"type": "http",
"url": "https://mcp.agent-ready.dev/api/apps/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "agent-ready-apps",
"transport": "streamable-http",
"url": "https://mcp.agent-ready.dev/api/apps/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
TRUST AND VERIFICATION EVIDENCE
Trust Data Available
BuiltWith Trust API v2 evidence for agent-ready.dev was fetched 2026-07-28T04:22:51.210Z and is being refreshed.
agent-ready.dev is assessed as Neutral: No suspicious signals found, but no strong positive signal either
Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.