agent-readiness-auditor
Provides a GitHub Action to automate agent readiness audits in CI/CD pipelines, with options to fail on safety issues.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@agent-readiness-auditoraudit example.com for agent readiness"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Agent Readiness Auditor
A command-line tool that scans a website and scores how well it works with, and how well it defends against, automated AI agents.
What problem this solves
AI assistants increasingly visit websites on a person's behalf: reading pages, following instructions found on them, and taking actions. This creates two practical issues for site owners:
Safety. A page can contain text that is hidden from human visitors but still read by an AI agent. That hidden text can carry instructions designed to hijack the agent. This is known as indirect prompt injection.
Readability for machines. Sites are usually built for human eyes. Agents do better when a site also publishes machine-readable signals about its content and its rules.
Standard SEO tools measure how well a site works for search engines. This tool measures something different: how well a site works for AI agents, and whether it is safe for them to read.
Related MCP server: Seonix SEO MCP
Research built with this tool
The State of the Agentic Web, 2026 audits 84 prominent sites across seven categories with this tool, and its second edition reruns the study with the deeper nine check audit. Among the findings, no audited site carries hidden prompt injection content even under attribute level and multi page scanning, only 13% publish the FAQ structured data AI answers quote, no site advertises an MCP endpoint, and nearly one in five prominent sites refuses automated visitors entirely, including several AI companies. The data and method are published for anyone to reproduce.
What it checks
The tool fetches the landing page, robots.txt, llms.txt, and the sitemap, then crawls a few key pages and runs nine checks, producing a score from 0 to 100 and a letter grade from A to F. Safety is weighted highest on purpose, because a readable site that can hijack an agent is worse than one that is simply hard to read.
Check | Points | What it looks for |
Hidden prompt-injection text | 40 | Agent-hijacking phrases in content humans cannot see, across every crawled page. Detects CSS hiding ( |
| 12 | A published file that gives agents a curated map of the site. See llmstxt.org. |
| 12 | Explicit allow or disallow rules for AI crawlers such as GPTBot and ClaudeBot. |
Structured data (JSON-LD) | 12 | Machine-readable data that lets agents understand page content directly. |
Accountability links | 9 | Reachable contact, privacy, terms, or about links. |
Sitemap | 5 | A reachable /sitemap.xml so crawlers can discover the whole site. |
Answerability | 5 | FAQ, QA, or HowTo structured data, the content shapes AI answers quote most readily. |
Meta robots | 5 | No accidental |
MCP signal | 0 | Informational only: whether the site advertises an MCP or agent-facing endpoint. Unscored while conventions are young. |
Example output
$ npx agent-readiness-auditor example.com
Agent readiness audit for https://example.com
✅ No hidden prompt-injection payloads (40/40)
⚠️ llms.txt present (0/12)
⚠️ robots.txt addresses AI crawlers (0/12)
⚠️ Machine-readable structured data (0/12)
⚠️ Accountability surface present (0/9)
⚠️ Sitemap present (0/5)
⚠️ Content structured for AI answers (0/5)
✅ No accidental index blocking (5/5)
✅ Agent endpoint advertised (informational) (0/0)
Score: 45/100 (45%) Grade DEach line shows the check result, its score, and (when a check does not fully pass) a suggested fix.
Quick start
If you have Node.js 18 or newer installed, you can run the tool in one line without installing anything:
npx agent-readiness-auditor example.com
npx agent-readiness-auditor example.com --jsonUse a bare domain (example.com) or a full URL (https://example.com). The --json flag prints machine-readable output for use in scripts.
Auditing many sites at once
Batch mode reads a text file with one URL per line (lines starting with # are ignored) and audits them a few at a time.
agent-audit --batch sites.txt # a report per site
agent-audit --batch sites.txt --csv # one CSV row per site
agent-audit --batch sites.txt --json # structured resultsThe CSV has a column for each check, which makes it easy to open in a spreadsheet or feed into an analysis.
Using it in GitHub Actions
The repo doubles as a GitHub Action, so any project can audit its own site on every push or on a schedule and fail the build if a hard safety problem appears.
steps:
- uses: actions/setup-node@v4
with:
node-version: 20
- uses: asish-singh/agent-readiness-auditor@v0.4.1
with:
url: example.com
fail-on: safety # or "never" to report without failingAn unreachable site produces a warning, not a failure, since bot protection on CI runners is an infrastructure issue rather than a safety one. This repo uses the action on itself every Monday in audit-site.yml.
Using it from an AI assistant (MCP)
The auditor ships with a server for the Model Context Protocol, the standard that lets AI assistants use external tools, and is listed on the official MCP registry. One of this tool's own findings is that zero of 69 prominent sites advertise an agent endpoint, so the auditor holds itself to the standard it measures. Once connected, you can simply ask your assistant to audit a site for you.
For Claude Code, one command connects it.
claude mcp add agent-readiness-auditor -- npx -y agent-readiness-auditor mcpFor Claude Desktop, add this to the mcpServers section of the configuration file.
{
"agent-readiness-auditor": {
"command": "npx",
"args": ["-y", "agent-readiness-auditor", "mcp"]
}
}The server exposes one tool, audit_site, which takes a URL and returns the same scores and findings as the command line.
Running from source
To work on the code or run it from a local copy:
git clone https://github.com/asish-singh/agent-readiness-auditor.git
cd agent-readiness-auditor
npm install
npm run audit -- example.com # human-readable report
npm run audit -- example.com --json # JSON outputThe -- in the command passes the URL to the tool rather than to npm.
To install a global agent-audit command from your local copy:
npm run build # compile TypeScript into dist/
npm link # register the global commandYou can then run agent-audit example.com from any folder. To remove it later, run npm unlink -g agent-readiness-auditor.
Installing from GitHub Packages
The package is also published to GitHub Packages as a scoped mirror, @asish-singh/agent-readiness-auditor. For most people the npm install above is simpler. Use GitHub Packages only if your organization standardizes on it, since it requires authentication even for public packages.
To install from it, create a GitHub personal access token with the read:packages scope, then point the scope at the GitHub registry:
echo "@asish-singh:registry=https://npm.pkg.github.com" >> .npmrc
echo "//npm.pkg.github.com/:_authToken=YOUR_GITHUB_TOKEN" >> .npmrc
npm install @asish-singh/agent-readiness-auditorExit codes
The tool sets its exit code so it can be used in automated pipelines:
0: the audit ran and found no hard safety failure.2: a hard safety failure was found (for example, hidden prompt-injection text). Use this to fail a build.1: the tool could not complete the audit (for example, the site was unreachable).
How the code is organized
Each check lives in its own file under src/checks/ and returns a structured result. All checks are registered in a single list in src/audit.ts, and the total score is derived from that list, so adding a new check does not require changing the scoring logic. Architecture decisions are recorded in docs/adr/, product decisions in docs/decisions/, planned work in ROADMAP.md, and the go-to-market plan in LAUNCH.md.
Background
This tool grew out of the Agentic Web Governance Pack, a set of guidelines for how websites should behave toward AI agents. This project turns several of those guidelines into checks that can be run and measured.
License
MIT. See LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceEnables AI agents to perform instant SEO, performance, and security audits of any website through the Model Context Protocol. It provides comprehensive analysis without requiring API keys or configuration.Last updated114MIT

Seonix SEO MCPofficial
AlicenseAqualityBmaintenanceLets any AI agent audit any website for SEO, GEO/AEO, and speed problems, reporting issues and recommendations without modifying the site.Last updated4MIT- AlicenseAqualityAmaintenanceEnables AI agents to check whether a public website is crawlable, understandable, and ready for AI search workflows through local-only audits of robots.txt, sitemaps, metadata, and llms.txt.Last updated3721MIT
- Alicense-qualityAmaintenanceEnables AI agents to scan any website for agent-readiness and generate the necessary artifacts (llms.txt, WebMCP scaffold, structured data) to make it agent-ready.Last updated13MIT
Related MCP Connectors
Scan any URL for AI agent readability — Vercel Spec, llmstxt.org, and agent-protocol manifests.
Scan any website or MCP server for agent-trust-readiness; returns a signed, verifiable scorecard.
Website QA for your coding agent: audit SEO, performance, security, accessibility over MCP.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/asish-singh/agent-readiness-auditor'
If you have feedback or need assistance with the MCP directory API, please join our Discord server