SEO Optimizer MCP Server
Enables Claude to perform multi-agent SEO analysis with specialist prompts and tools for fetching pages, PageSpeed, and SERP data.
README
SEO Optimizer — MCP Server
An MCP server that exposes a multi-agent SEO
analysis toolkit to your own Claude client (Claude Code, Claude Desktop,
Cursor, …): 12 specialist agents as prompts plus crawl/data tools
(fetch_page, pagespeed, serp).
The reasoning runs on your own Claude (your subscription / login). You invoke
a prompt, your Claude performs the analysis using these tools. No
ANTHROPIC_API_KEY for the server, no central billing, no per-URL cost.
Ships as a single self-contained bundle (
dist/index.js) — the only runtime dependencies are@modelcontextprotocol/sdk,zod, andcheerio.
What it provides
Tools (deterministic, no LLM):
| Tool | Purpose |
|---|---|
fetch_page(url) |
Fetch a URL → cleaned, readable HTML |
pagespeed(url, strategy) |
PageSpeed/Lighthouse summary (Core Web Vitals + opportunities) |
serp(keyword, location?, numResults?) |
Organic search results — SerpAPI if SerpAPI_KEY is set, else a key-less DuckDuckGo lookup |
Prompts — technical-auditor, page-speed, meta-optimizer,
internal-link, semantic-content, cannibalization, competitor-gap,
ai-visibility, company-intelligence, feedback-analyzer, geo,
blog-writer, and seo-full-analysis (gathers evidence once, runs all 11
analysis lenses, then outputs a prioritized report).
Install
Requires Node.js 18+. Pick whichever you prefer — both are one command, no clone, no file paths:
# From npm (after the package is published)
npx -y seo-optimizer-mcp
# …or straight from GitHub, no npm publish needed
npx -y github:emirhanyenici/SEO-Optimizer-MCP
npxinstalls the three deps on first run and caches them.
Claude Code
claude mcp add seo-optimizer -s user -- npx -y seo-optimizer-mcp
# or: ... -- npx -y github:emirhanyenici/SEO-Optimizer-MCP
-s usermakes it available in all your projects (use-s localfor just the current one, or-s projectto write a shared.mcp.json).- Add optional keys with
-e SerpAPI_KEY=… -e GOOGLE_PAGESPEED_API_KEY=…. - Verify with
claude mcp list, or/mcpinside a session. The prompts appear as slash commands like/mcp__seo-optimizer__seo-full-analysis; the tools are available automatically.
Claude Desktop
Edit claude_desktop_config.json
(Windows %APPDATA%\Claude\…, macOS ~/Library/Application Support/Claude/…):
{
"mcpServers": {
"seo-optimizer": {
"command": "npx",
"args": ["-y", "seo-optimizer-mcp"],
"env": { "SerpAPI_KEY": "optional", "GOOGLE_PAGESPEED_API_KEY": "optional" }
}
}
}
Cursor
Add to .cursor/mcp.json (or global ~/.cursor/mcp.json):
{
"mcpServers": {
"seo-optimizer": { "command": "npx", "args": ["-y", "seo-optimizer-mcp"] }
}
}
Environment variables (both optional)
| Var | Used by | Notes |
|---|---|---|
SerpAPI_KEY |
serp |
With it: SerpAPI (richer, location-aware). Without it: automatic DuckDuckGo fallback. |
GOOGLE_PAGESPEED_API_KEY |
pagespeed |
Works without a key (public quota); a key raises the rate limit. |
The server runs and every tool works with no env at all.
Usage
In your Claude client, pick a prompt — e.g. Full SEO Analysis — and pass
url (required), keyword and competitorUrls (optional). Your Claude runs the
analysis and returns an overall score + a prioritized action table + per-lens
findings. All inference is billed to your account. For a single lens, invoke
that specialist's prompt instead (e.g. page-speed); for an SEO article, invoke
blog-writer.
Maintainers — building & releasing
The TypeScript source lives in the main SEO Optimizer project (it reuses that project's agent prompts and helpers). To cut a new release of this distributable:
# in the main project's mcp/ folder
npm run build # esbuild → dist/index.js (self-contained)
Then publish/push the bundle:
npm publish # to npm → users get `npx -y seo-optimizer-mcp`
# and/or push dist + package.json + README to the public repo for `npx github:…`
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.