growth-mcp
Open-source MCP server that audits websites for AI search readiness, providing deterministic scoring (0-100) and prioritized fix lists for metrics like JSON-LD, llms.txt, heading hierarchy, and AI crawler access.
README
growth-mcp
Is AI ignoring your website? growth-mcp is an open-source MCP server that turns Claude, Cursor, or any MCP client into a marketing analyst — starting with the question every marketer is asking in 2026: can ChatGPT, Perplexity, and Google AI Overviews actually read and cite my site?
No API keys. No signup. No LLM calls from the server. Just ask your AI assistant:
"Audit example.com for AI search readiness"
and get back a 0–100 score with evidence and a prioritized fix list:
AI-readiness score: 62/100 (C)
✅ Heading hierarchy is clean
✅ robots.txt does not block AI crawlers
❌ No JSON-LD structured data — AI engines can't parse your entities
❌ No llms.txt — AI crawlers have no guide to your site
❌ Content only appears after JavaScript renders — invisible to most AI crawlers
Why this exists
Search is shifting from "rank on Google" to "get cited by AI." Paid GEO tools cost $100–1000/month; Google's free tools validate markup but don't score or guide. growth-mcp gives you the audit for free, inside the AI assistant you already use — with deterministic, explainable scoring (same URL → same score).
Quick start
Claude Code
claude mcp add growth-mcp -- uvx growth-mcp
Claude Desktop / Cursor
Add to your MCP config (claude_desktop_config.json or .cursor/mcp.json):
{
"mcpServers": {
"growth-mcp": {
"command": "uvx",
"args": ["growth-mcp"]
}
}
}
Requires uv. From source instead: clone this repo and use "command": "uv", "args": ["run", "--directory", "/path/to/growth-mcp", "growth-mcp"].
Tools
| Tool | What it does |
|---|---|
audit_ai_readiness(url) |
15-check GEO audit → score/100, grade, evidence, fix list |
compare_ai_readiness(url_a, url_b) |
You vs. competitor — scores, winner, per-check diff |
check_llms_txt(domain) |
Finds and validates llms.txt against the llmstxt.org format |
audit_onpage_seo(url) |
Title/meta, H1s, canonical, Open Graph, alt coverage, links |
The 15 AI-readiness checks, across four dimensions:
- Access & indexability (30%) — AI-crawler access in robots.txt (GPTBot/ClaudeBot/PerplexityBot blocked?) · JS-rendered-content risk · noindex/nosnippet directives · XML sitemap
- Entity & structure (25%) — JSON-LD structured data · heading hierarchy · title/meta quality · llms.txt presence
- Citation-ready content (30%) — FAQ content & FAQPage schema · question-based headings · answer-first structure · lists & tables · factual density (stats/numbers)
- Trust & E-E-A-T (15%) — author attribution · freshness dates
Prompts included: full_site_audit, compare_with_competitor — available as slash-commands in clients that support MCP prompts.
Example prompts
- "Is my site ready to show up in AI search results? Check leapswitch.com"
- "Compare my homepage with competitor.com for AI visibility"
- "Does my robots.txt block AI crawlers?"
- "Validate the llms.txt on my domain"
Run as a hosted endpoint
The same server runs as a remote MCP service over streamable HTTP:
growth-mcp --transport streamable-http --port 8000
# or
docker build -t growth-mcp . && docker run -p 8000:8000 growth-mcp
Deploy it on any VPS or cloud server — for example on Leapswitch — and point any MCP client at http://your-host:8000/mcp.
Design principles
- Stateless data-plumbing — the server never calls an LLM; your AI client is the brain.
- Deterministic scoring — pure Python, weighted, versioned (
scoring_versionin every result). No flaky AI grades. - Safe fetching — SSRF guard (private/loopback/link-local IPs rejected on every redirect hop), 5 MB response cap, honest User-Agent, timeouts.
- Compact output — tools return structured JSON (score + evidence + fix), never raw HTML, so your context window stays clean.
- Contributor-friendly — every audit rule is one small file in
growth_mcp/checks/. Add a function, decorate with@register, done.
Roadmap
- v0.2 — Connectors (bring your own keys): Google Search Console top queries, GA4 reports.
- v0.3 — AI visibility tracking: run your target prompts against ChatGPT / Perplexity / Gemini APIs and report whether your brand is mentioned and cited vs. competitors — the $100/mo SaaS feature, open source.
- Playwright-based deep rendering (optional extra), sitemap-wide audits, more checks.
Contributing
New checks are the easiest contribution — see the pattern in growth_mcp/checks/base.py. Run the test suite with:
uv sync --dev
uv run pytest
License & credits
MIT © Abhishek Ambad. Built with support from Leapswitch Networks.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.