seo-mcp-server

rhoni/seo-mcp-server

3.2

If you are the rightful owner of seo-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.

The Model Context Protocol (MCP) server is a specialized server designed to facilitate communication and data exchange between language models and various applications, ensuring efficient and seamless integration.

seo-mcp-server

Official MCP server for SEOMCP (https://seomcp.run). Specialized tools for SEO optimization and preparation (including GEO, AEO) of sites and content. Connects your AI agents to professional SEO analytics and data analysis tools.

Install

pip install seo-mcp-server
# or
uvx seo-mcp-server

VS Code Configuration

To configure the server globally, edit the mcp.json file:

  • Linux: ~/.config/Code/User/mcp.json
  • MacOS: ~/Library/Application Support/Code/User/mcp.json
  • Windows: %APPDATA%\Code\User\mcp.json
{
	"servers": {
		"seo-mcp-server": {
			"type": "stdio",
			"command": "uvx",
			"args": ["seo-mcp-server"],
			"env": {
				"SEOMCP_API_KEY": "seomcp-..."
			}
		}
	}
}

You can also create a project-specific config in .vscode/mcp.json with the same content.

Claude Desktop config

On MacOS: ~/Library/Application\ Support/Claude/claude_desktop_config.json On Windows: %APPDATA%/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "seo-mcp-server": {
      "command": "uvx",
      "args": [
        "seo-mcp-server"
      ],
      "env": {
        "SEOMCP_API_KEY": "seomcp-..."
      }
    }
  }
}

Tools

  • analyze_serp(keyword)
  • research_perplexity(keyword, patterns)
  • brainstorm_outline(patterns, facts)
  • gather_details(outline)
  • generate_article(outline, facts, details)
  • embed_links(article, research)
  • ...

Get API Key

To use this MCP server, you need an API key.

  1. Go to console.seomcp.run.
  2. Log in and generate a new key.
  3. Use this key as SEOMCP_API_KEY in your configuration.