DispatchSEO
Turn Claude Code into your SEO manager with keyword research, content pipeline that ships pull requests, rank tracking, and a dashboard.
README
<p align="center"> <a href="https://dispatchseo.com"> <img src="src/app/icon.png" width="90" alt="DispatchSEO logo"> </a> </p>
<h1 align="center">DispatchSEO</h1>
<p align="center"><b>Turn Claude Code into your SEO manager.</b></p>
<p align="center"> <a href="LICENSE"><img src="docs/buttons/license-agpl.svg" alt="License: AGPL-3.0"></a> </p>
<p align="center"> <a href="https://dispatchseo.com">Website</a> · <a href="https://dispatchseo.com/docs">Docs</a> · <a href="docs/SELF_HOSTING.md">Self-hosting guide</a> · <a href="https://github.com/NeoZi12/dispatchseo/discussions">Discussions</a> · <a href="https://dispatchseo.com">Cloud waitlist</a> </p>
<p align="center"> The open-source alternative to SEObot and Outrank, built for Claude Code. Other SEO tools learn about your product by crawling your homepage. Your Claude Code already knows your product, because it probably built half of it. DispatchSEO gives that agent the missing pieces: a research playbook, a content pipeline that ships pull requests, rank tracking, and a dashboard where you stay in control. </p>
<p align="center"> <a href="https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2FNeoZi12%2Fdispatchseo&project-name=dispatchseo&repository-name=dispatchseo&stores=%5B%7B%22type%22%3A%22integration%22%2C%22integrationSlug%22%3A%22supabase%22%2C%22productSlug%22%3A%22supabase%22%2C%22protocol%22%3A%22storage%22%7D%5D"><img src="docs/buttons/deploy-new-db.svg" alt="Deploy - new database"></a> <a href="https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2FNeoZi12%2Fdispatchseo&project-name=dispatchseo&repository-name=dispatchseo"><img src="docs/buttons/deploy-own-db.svg" alt="Deploy - your own database"></a> </p>
<p align="center"> Neither asks you for anything. Deploy, open your new site, and it walks you through the rest - the first button also creates a free Supabase database for you; the second is for connecting a database you already have (<a href="docs/SELF_HOSTING.md">guide</a>). </p>
<p align="center">Prefer your own machine? No cloud accounts, one command:</p>
git clone https://github.com/NeoZi12/dispatchseo &&
cd dispatchseo &&
sh start.sh
<p align="center">When it finishes it prints your dashboard URL - open it and the setup wizard takes it from there. Already running something on port 3000? It picks the next free port automatically. On Windows, paste this in WSL or Git Bash.</p>
<p align="center"><i>Self-hosted has zero feature limitations. Everything the paid cloud will do, this repo does today, in your own accounts, at $0.</i></p>
<p align="center"> <img src="docs/screenshots/home.png" alt="The dashboard Home: journey stage, publishing pace, and live Search Console stats for a connected site"> </p>
How it works
- Your agent researches. Claude Code connects to DispatchSEO over MCP, reads the served playbook, and mines keywords from your Search Console data, Google Autocomplete, and what it already knows about your product. Ideas land in a queue with the reasoning attached.
- You approve, or don't. Each idea is a card on the dashboard: the keyword, why it's winnable, the angle. Approve, reject, or reorder. Prefer full autopilot? Flip on auto mode and skip the queue entirely.
- The pipeline builds. Every morning a GitHub Action picks the oldest approved idea and builds it into a real pull request against your site's repo: a guide or a small free tool, checked against the live SERP and run through a sameness reviewer so page twelve doesn't read like page three.
- It tracks what happened. Daily rank checks, hourly Search Console snapshots, index verification, and a journey view that tells you which SEO stage you're actually in. When a scheduled job breaks, you get a red banner and an email instead of silence.
The backend is deliberately boring: state, scheduling, and an approval gate. The thinking happens in your agent, where your product knowledge already lives.
<table> <tr> <td><img src="docs/screenshots/queue.png" alt="The queue: keyword ideas with volume and difficulty, each waiting for approval or set to auto"></td> <td><img src="docs/screenshots/guide-pr.png" alt="A pull request the pipeline built: target keyword, SERP gate verdict, archetype, and information-gain asset, all named in the description"></td> </tr> <tr> <td><img src="docs/screenshots/search-traffic.png" alt="Search traffic: clicks and impressions from Google Search Console, snapshotted hourly"></td> <td><img src="docs/screenshots/rankings.png" alt="Keyword rankings: daily position checks with 30-day trend sparklines"></td> </tr> </table>
What's in the box
- MCP server with ~40 tools: the queue, keywords, rankings, pages, GSC stats, backlink prospects, trend topics, site profile. Anything the dashboard can do, your agent can do over MCP; parity between the two is a hard rule in this codebase.
- Trend radar: scan for rising topics in your niche, expand a topic into concrete guide angles, and queue the good ones.
- Guide and tool builders: guides publish on a pace matched to your site's age (so a three-week-old blog doesn't suddenly ship 30 posts); free-tool ideas build on approval.
- Backlink playbook: a prospect list prefilled with your product's copy, tracked per submission.
- Multi-site: one deployment manages any number of sites. Each project gets its own MCP token, its own data, its own settings.
- A password-gated dashboard for the one human in the loop.
What it costs to run
Nothing, unless you want paid data. The tiers stack:
| Tier | Price | What you get |
|---|---|---|
| Search Console only | $0 | Rankings from GSC, keyword ideas from Autocomplete plus your own impression data |
| + SerpApi free key | $0 | Live SERP checks, real positions weekly (250 free searches/month) |
| + DataForSEO | pay per call | Search volume, keyword difficulty, domain rating |
Free mode finds keywords you can win. Paid mode also knows which ones are worth winning.
What you need
- Your site's source in a GitHub repo. The pipeline ships content as pull requests, so git-based sites only; WordPress won't work.
- A Claude subscription with Claude Code. Your agent is the engine and it runs on your existing plan.
- Somewhere to run it: either free Vercel + Supabase accounts, or any machine with Docker (~1 GB RAM - a $5 VPS or your laptop).
- Google Search Console access to your site.
Quick start
Two ways in, same product either way (docs/SELF_HOSTING.md covers both):
- Docker - the one command above. Database, migrations, and cron schedules are all bundled; open the dashboard and the setup wizard takes over.
- Free cloud tiers - click a deploy button above (Vercel + Supabase), run the one-file database setup, and enable the GitHub Actions schedule.
Either way, the last step is pasting one command into Claude Code inside your site's repo. Your agent does the rest of the install itself, including writing its own workflow files and setting its own secrets.
There's also an llms.txt and a SKILL.md if you'd rather point an agent at this repo and let it figure the setup out.
Run it locally
git clone https://github.com/NeoZi12/dispatchseo
cd dispatchseo
pnpm install
cp .env.local.example .env.local
pnpm dev
Fill in .env.local (Supabase + the three secrets) before starting, then
open the dashboard on localhost:3000.
pnpm build is the typecheck - run it before opening a PR. There is no
separate lint or test setup.
Cloud version
A hosted version is coming for people who'd rather not manage a Vercel deployment: bundled SERP data, one-click Search Console connection, managed crons. Join the waitlist at dispatchseo.com. Self-hosting will stay feature-complete either way; the cloud sells convenience, not capability.
Architecture, briefly
Next.js App Router on Vercel, Supabase for state, GitHub Actions for
schedules and builds, mcp-handler for the MCP server at /api/mcp. One
deployment is multi-tenant: the MCP bearer token selects the project, crons
loop over all projects, the dashboard switches with a cookie.
CLAUDE.md has the full conventions; it's written for agents,
which turns out to make it decent documentation for people.
Contributing
Issues before PRs, and you must understand every line you submit, including the AI-assisted ones. Details in CONTRIBUTING.md. Questions go to Discussions; vulnerabilities go through private reporting.
License
AGPL-3.0. Use it, self-host it, fork it. If you run a modified version as a service, share the source. That's the whole deal.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。