New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

site-spec-mcp

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

site-spec-mcp

MCP server for site-spec: audit any website's invisible foundation (SEO, accessibility, privacy, structured data, AI searchability) and auto-fix what's broken, from inside your agent.

latest
Source
npmnpm
Version
0.3.2
Version published
Weekly downloads
36
38.46%
Maintainers
1
Weekly downloads
 
Created
Source

site-spec-mcp

Give your coding agent eyes for the layer it can't see: the MCP server for site-spec.

npm License: Apache-2.0

For agents

Register the server, then call list_checks to learn the check ids and audit_site on a URL.

claude mcp add site-spec -- npx -y site-spec-mcp

Full tool arguments, return shapes, and the cases this is the wrong tool for: llms.txt.

AI can generate a beautiful website in seconds. The part it can't see is the machine-readable foundation underneath the pixels — robots.txt, structured data, llms.txt, canonical and noindex signals, response headers, accessibility semantics, the tracker and cookie surface — which is the part that decides whether the site gets found, ranked, cited, and trusted.

This server hands that layer to your agent as four tools. It runs the same deterministic engine as the site-spec CLI, in-process: no network hop to a hosted service, no shelling out, no model in the loop deciding what counts as broken.

Install

claude mcp add site-spec -- npx -y site-spec-mcp
Codex (~/.codex/config.toml)
[mcp_servers.site-spec]
command = "npx"
args = ["-y", "site-spec-mcp"]
Any other MCP client (mcp.json-style)
{
  "mcpServers": {
    "site-spec": {
      "command": "npx",
      "args": ["-y", "site-spec-mcp"]
    }
  }
}

Requires Node 20+. No account, no API key, no SaaS. The published package is a single bundled file with zero runtime dependencies.

The tools

ToolWhat it does
audit_siteCrawl a live URL (or read a local build directory) and return every finding: check id, severity, file, and whether it can be auto-fixed.
fix_issueApply the deterministic repair for one check id and return the diff — or write it, for a local directory.
compile_specTurn verified business facts into a validated SiteSpec and the deployable files it renders to.
list_checksEnumerate every check the engine can raise, with a one-line description and its fix availability.

How a tool call reaches the engine

flowchart LR
  A["MCP client<br/>(Claude Code, Codex)"] -- stdio JSON-RPC --> B["site-spec-mcp"]
  B --> C["@site-spec/core/io<br/>fetchSite · readSiteDir"]
  C -- "file map" --> D["@site-spec/core<br/>auditFiles · fixFiles · buildSite"]
  D -- "findings / files" --> B
  B -- "JSON" --> A

The server never shells out to the site-spec CLI and never calls the hosted worker. Both are consumers of the same engine, not layers underneath this one.

Notes on honesty

fix_issue on a URL can only ever give you a diff. The fix engine is pure: it returns corrected file contents and never touches disk or network. A remote server is not writable, so write: true is refused for a URL target. Point it at the local directory that produces the site to actually apply a fix.

A live crawl runs presence checks off. A capped crawl cannot prove a file is absent from a server, so audit_site disables link/presence checks in URL mode — otherwise it would invent "missing" findings for pages it simply didn't fetch. Local directory audits run the full set.

Not every check is fixable. 17 of the 40 checks have a deterministic repair; the rest need a human, and fix_issue says so rather than guessing. list_checks marks which is which.

Also available

  • CLI: npx site-spec audit https://yoursite.com — the full check set, including broken links, axe accessibility, and HTML validation.
  • Hosted: site-spec.ariaxhan.workers.dev — paste a URL, get the report, no install.

License

Apache-2.0 © Aria Han

Keywords

mcp

FAQs

Package last updated on 27 Aug 2026

Related posts