Seo Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Seo Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
An SEO MCP server — a stdio Model Context Protocol server that gives an AI host a set of SEO tools. The MVP is 100% free and keyless: on-page/technical audits, robots.txt, sitemaps, structured data, broken-link checks, and keyword ideas.
Built on the same proven scaffold as chrome-mcp: SDK Server → StdioServerTransport, a flat tool registry, and a never-throw dispatch firewall.
| Tool | What it does |
|---|---|
audit_page | Full on-page audit: title, meta description, canonical, robots, viewport, OG/Twitter, heading outline, word count, image alt coverage, link counts, structured-data presence → issues + 0–100 score. Pass pagespeed: true to also attach PageSpeed metrics |
check_robots | Fetch & parse /robots.txt — UA groups, allow/disallow, declared sitemaps |
check_sitemap | Discover & summarize a sitemap (index vs urlset, URL count, sample) |
extract_schema | Pull JSON-LD structured data and list schema.org @types (+ microdata, parse errors) |
find_broken_links | HEAD-check links on a page; report 4xx/5xx/unreachable |
keyword_ideas | Related queries for a seed term via Google Suggest (no volume) |
pagespeed | Google PageSpeed Insights (Lighthouse): perf score, lab Core Web Vitals + real-user CrUX field data + top opportunities. Keyless (rate-limited); set PAGESPEED_API_KEY to raise the quota |
npm install
npm run build # → dist/src/cli.jsAdd to your MCP host config (e.g. a project .mcp.json):
{
"mcpServers": {
"seo-mcp": {
"type": "stdio",
"command": "node",
"args": ["/Users/mehmoodqureshi/Work/seo-mcp/dist/src/cli.js"]
}
}
}Then ask things like "audit https://example.com for SEO" or "what does example.com's robots.txt block?".
node -e "require('./dist/src/seo/audit').auditPage('https://example.com').then(r=>console.log(JSON.stringify(r,null,2)))"npm run typecheck # tsc --noEmit
npm run build # → dist/CI (.github/workflows/ci.yml) runs typecheck → build on Node 18/20/22.
The pagespeed tool works keyless but Google rate-limits anonymous requests. To raise the quota, grab a free PageSpeed Insights API key and set it in your MCP host config:
{
"mcpServers": {
"seo-mcp": {
"type": "stdio",
"command": "node",
"args": ["/Users/mehmoodqureshi/Work/seo-mcp/dist/src/cli.js"],
"env": { "PAGESPEED_API_KEY": "your-key-here" }
}
}
}serp_rank — real SERP position checks (drive a browser, or a paid SERP API)domain_authority — OpenPageRank (free key) for an authority scorebacklinks — real backlink profiles (paid: Ahrefs / SEMrush / DataForSEO)MIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.