superaudit-mcp
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., "@superaudit-mcprun a website audit on example.com and summarize the results"
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.
superaudit-mcp
MCP (Model Context Protocol) server that exposes SuperAudit's real, free audit as a tool that any MCP-compatible AI agent can call.
With this, an external developer can ask their own agent (Claude, or another MCP client) for things like "audit this website with SuperAudit" without talking to anyone on the SuperAudit team — the tool calls the public production endpoint directly.
What it does
Exposes a single tool: audit_website.
Input:
url(required): domain or URL to audit, e.g."minegocio.es"or"https://minegocio.es".raw_json(optional,boolean, defaults tofalse): iftrue, in addition to the readable summary it returns the full JSON exactly as SuperAudit delivers it (all modules, all scores, the plans).
What it does internally: calls
POST https://superaudit.airpagents.pro/api/quick-auditwith{ "web": "<url>" }— the same public endpoint SuperAudit's landing page uses today for the free scan. It needs no key or token.Output: a text summary with the global score (0-100), the score for each of the ~27 modules (SEO, security, legal/GDPR, Core Web Vitals, WCAG accessibility, generative AI positioning, WordPress/CVEs, OWASP Top 10, etc.), the main issues detected and the paid plan SuperAudit recommends based on the result.
Related MCP server: foglift-mcp
Known limits (important)
The public endpoint has a limit of 10 requests per minute per IP on the SuperAudit server. If exceeded, the tool returns an error indicating so — it does not retry automatically to avoid overloading the service.
The backend caches each audited domain for 24 hours, so re-auditing the same website shortly after is instant.
A "cold" audit (uncached domain) can easily take several seconds: the client waits up to 90s before considering the attempt failed.
The backend validates that the URL points to a real public domain (blocks private IPs/localhost as an SSRF measure) — if the website doesn't exist or isn't online, the tool returns a readable error, not a silent failure.
Installation (for an external developer)
Requirements: Node.js 18 or higher.
git clone <este repositorio> # o simplemente copia esta carpeta
cd superaudit-mcp
npm install
npm run buildThis generates dist/index.js, which is the MCP server binary (it speaks over
stdio, the standard MCP transport).
Try it standalone (optional)
npm run build
node dist/index.jsThe process stays waiting on stdio — that's normal, that's how MCP servers work. It connects from an MCP client, it's not used as an interactive CLI.
How to connect it to an MCP client
Claude Code
claude mcp add superaudit -- node "/ruta/completa/a/superaudit-mcp/dist/index.js"Claude Desktop
Edit the Claude Desktop configuration file (claude_desktop_config.json)
and add:
{
"mcpServers": {
"superaudit": {
"command": "node",
"args": ["/ruta/completa/a/superaudit-mcp/dist/index.js"]
}
}
}Restart Claude Desktop. The audit_website tool will appear available for
the agent to use when the conversation requires it (e.g. "audit
minegocio.es with SuperAudit").
Any other MCP client
Any client that supports MCP servers over stdio can launch
node dist/index.js as the server command — it requires no additional
configuration or environment variables.
Environment variables (optional)
SUPERAUDIT_BASE_URL: defaults tohttps://superaudit.airpagents.pro. It only makes sense to change it to point to your own test environment.
No API key is needed: the endpoint this tool uses is the same one SuperAudit's public landing page uses for the free scan.
Development
npm install
npm run build # compila TypeScript → dist/There are no automated tests in this initial deliverable — it was verified
manually with a real MCP client (handshake initialize + tools/list
tools/call) against the production endpoint.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- AlicenseBqualityBmaintenanceMCP server that enables AI agents to perform comprehensive web audits using Google Lighthouse with 13+ tools for performance, accessibility, SEO, and security analysis.1192166MIT
- AlicenseNot gradedqualityNot gradedmaintenanceMCP server for website SEO + GEO analysis. Scan any URL to get scores across 5 categories (SEO, GEO, Performance, Security, Accessibility) with actionable fix recommendations. Enables AI coding assistants to audit websites and implement fixes autonomously.
- AlicenseAqualityDmaintenanceA comprehensive MCP server providing 15 web tools including search, scraping, screenshots, SEO audits, and DNS/SSL checks through a single installation. It delivers clean, LLM-optimized outputs so AI agents can focus on reasoning rather than parsing raw HTML.1520MIT
- AlicenseAqualityDmaintenanceEnables AI agents to perform comprehensive SEO audits on web pages, including meta tags, headings, links, images, performance, and more, via a CLI or MCP server.181MIT
Related MCP Connectors
Free public MCP for AI agents — 193 tools, 44 workflows. No API key.
SEO MCP server: crawl your site, find AI-visibility gaps, and ship the fix from your coding agent.
Hosted MCP with 91 agent tools: X, domains, SEO, Maps, Trends, Search, YouTube, TikTok, and more.
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/Jorucmor/superaudit-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server