streamable-httpMITupdated 1mo ago
Run the full SEO loop from your AI assistant:
What can you do with SEOPro AI?
SEOPro AI Agent Plugin
Run the full SEO loop from your AI assistant:
Search Console insight ā prioritized action ā generated article ā CMS publishing ā indexing ā measurable Google and AI-referral results.
SEOPro AI is a hosted remote MCP server for anyone responsible for website growth, from founders and small teams to in-house marketers, consultants, and agencies. It is distributed as a portable Agent Plugin. The implementation stays on SEOPro AI infrastructure; this repository contains the public connection metadata, setup guides, reusable SEO workflows, and security documentation.

Connect
Install as an Agent Plugin
This repository conforms to Agent Plugins 1.0.0. Add or clone the repository through a compatible client's plugin installation flow. The client discovers:
seoproai-mcp/
āāā plugin.json # Agent Plugins manifest
āāā mcp.json # Agent Plugins MCP config
āāā .claude-plugin/plugin.json # Claude plugin manifest
āāā .mcp.json # Claude plugin MCP config
āāā skills/
āāā seoproai-operator/
āāā SKILL.md
plugin.jsonidentifies the portable package.mcp.jsondeclares the hosted Streamable HTTP server..claude-plugin/plugin.jsonand.mcp.jsonmake the same package native to Claude Code and Cowork.skills/seoproai-operator/supplies safe SEO workflows and approval gates for one or many websites.
Agent Plugins 1.0.0 intentionally leaves remote authentication to the client. Complete OAuth in the client or keep a scoped SEOPro AI API key in its secret store. Never add credentials to mcp.json, plugin.json, or SKILL.md.
Clients that do not yet load Agent Plugins can use the manual setup below.
Connect manually
Remote MCP URL
https://api.seoproai.co/api/mcp
No server package or local runtime is required. Interactive clients use OAuth. Developer clients may use a revocable SEOPro AI API key as a bearer token.
Official MCP Registry identifier: io.github.alpha-ai-labs/seo-agent
| Client | Auth | Setup |
|---|---|---|
| Claude | OAuth | Settings ā Connectors ā Add custom connector ā paste the URL ā Connect |
| ChatGPT | OAuth | Settings ā Apps & Connectors ā Advanced/Developer mode ā Create ā paste the URL |
| Codex | OAuth | codex mcp add seopro-ai --url https://api.seoproai.co/api/mcp, then codex mcp login seopro-ai |
| Claude Code | OAuth or API key | claude mcp add --transport http seopro-ai https://api.seoproai.co/api/mcp |
| Hermes | API key | Add the URL and environment-backed bearer header in ~/.hermes/config.yaml |
| OpenClaw | OAuth or API key | Add a Streamable HTTP entry under mcp.servers; prefer OAuth or keep a static key in an environment variable |
| Cursor / Windsurf | OAuth or API key | Add a remote Streamable HTTP server in MCP settings |
See client setup for copy-paste configurations and current caveats.
Three SEO workflows
1. Find website quick wins
Using SEOPro AI, list my websites. For [website], review the last 28 days of
Search Console performance. Find queries ranking 5ā15 with meaningful
impressions, group them by page, and give me a prioritized action plan. Do not
make any changes.
2. Build and generate a content plan
Using SEOPro AI, review [client site]'s search performance and current keyword
plan. Propose a four-week content plan around [service/topic]. Show me the plan
before creating it. After I approve it, create the keyword plan and generate
only the first article.
3. Review, publish, index, and measure
Using SEOPro AI, show me the draft for [article]. Check its title, meta
description, structure, and relevance to the target keyword. Do not publish
until I explicitly approve the final draft. After approval, publish it, submit
the published URL for indexing, and give me a 30-day measurement checklist.
The complete prompt pack is in agency prompt pack.
Demo and example data
- Use the 90-second demo script to record a consistent agency workflow without exposing customer data.
- Use the fictional tool results for directory reviews, screenshots, and public demonstrations.
- The product workflow visual is available at assets/mcp-agency-workflow.webp.

The Search Console image is an example connected performance view. Results vary by website.
What the server exposes
The server provides 18 narrowly scoped tools across:
- Websites and account context.
- Search Console summaries, keywords, trends, and AI-referral traffic.
- Technical audits, AI citations, and backlink profiles.
- Keyword/content planning and asynchronous article generation.
- Draft review and explicit-confirmation CMS publishing.
- Explicit-confirmation indexing requests and indexing status.
Read tools are annotated as read-only and non-destructive. Publishing and indexing are annotated as externally consequential and require an explicit confirmation argument on every call.
Privacy and security
- Authentication is required for every MCP request.
- OAuth and API-key access can be revoked.
- Website ownership and subscription limits are enforced by the same backend routes used by the SEOPro AI dashboard.
- Analytics records operational metadata such as tool name, success, latency band, auth method, and normalized client family. It never records credentials, tool arguments, article content, website content, or returned customer data.
- The public repository contains no hosted-server source code or credentials.
Read SECURITY.md, architecture and data handling, and the SEOPro AI Privacy Policy.
Requirements
- An SEOPro AI account. The current acquisition offer is a $1 seven-day trial.
- Connected websites and, for search-performance workflows, Google Search Console.
- A supported CMS connection for publishing workflows.
Start at seoproai.co/mcp.
Repository map
plugin.jsonā Agent Plugins 1.0.0 package manifest.mcp.jsonā Portable Streamable HTTP MCP connection without embedded credentials..claude-plugin/plugin.jsonā Claude Code and Cowork plugin manifest..mcp.jsonā Claude-native remote HTTP connector configuration without embedded credentials.server.jsonā Official MCP Registry metadata for the hosted endpoint.docs/client-setup.mdā Client-specific setup.docs/agency-prompt-pack.mdā Safe, reusable agency prompts.docs/compatibility.mdā Tested client/auth matrix.docs/troubleshooting.mdā Connection and tool-call diagnostics.docs/architecture-and-data-handling.mdā Trust boundary and analytics disclosure.docs/directory-listing-copy.mdā Canonical short and long listing descriptions.docs/90-second-demo-script.mdā Timed narration, capture plan, and privacy checklist.docs/example-tool-results.mdā Fictional sample data for screenshots and reviews.assets/ā Public workflow and product-proof visuals.skills/seoproai-operator/ā Portable Agent Skill for founders, small teams, in-house marketers, consultants, and agencies.scripts/validate_agent_plugin.pyā Schema, transport, package-boundary, and skill validation used by CI.
Support
Email support@seoproai.co or open a GitHub issue without including credentials or customer data. Service availability: seoproai.co.
License
Documentation and repository assets are licensed under MIT. The hosted SEOPro AI service and its implementation remain proprietary and are governed by the Terms.
Install
Add SEOPro AI to your client. Pick the one you use.
claude mcp add --transport http seopro-ai https://api.seoproai.co/api/mcpcodex mcp add seopro-ai --url https://api.seoproai.co/api/mcp{
"mcpServers": {
"seopro-ai": {
"url": "https://api.seoproai.co/api/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"seopro-ai": {
"type": "http",
"url": "https://api.seoproai.co/api/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"seopro-ai": {
"url": "https://api.seoproai.co/api/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"seopro-ai": {
"serverUrl": "https://api.seoproai.co/api/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation25/25
- Maintenance25/25
- Trust16/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 25 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint ā no local install
Version history
| Versions | Published |
|---|---|
| 1.2.0Latest | Aug 7, 2026 |
| 1.1.2 | Aug 7, 2026 |
| 1.1.1 | Aug 7, 2026 |
| 1.1.0 | Aug 7, 2026 |
| 1.0.2 | Aug 5, 2026 |
| 1.0.1 | Aug 5, 2026 |
| 1.0.0 | Aug 5, 2026 |