Skip to main content
Glama
Jorucmor

superaudit-mcp

by Jorucmor

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 to false): if true, 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-audit with { "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 build

This 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.js

The 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 to https://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.

Install Server
A
license - permissive license
A
quality
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • A
    license
    B
    quality
    B
    maintenance
    MCP server that enables AI agents to perform comprehensive web audits using Google Lighthouse with 13+ tools for performance, accessibility, SEO, and security analysis.
    11
    921
    66
    MIT
  • A
    license
    Not graded
    quality
    Not graded
    maintenance
    MCP 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.
  • A
    license
    A
    quality
    D
    maintenance
    A 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.
    15
    20
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    Enables 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.
    18
    1
    MIT

View all related MCP servers

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.

View all MCP Connectors

Latest Blog Posts

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