SE Ranking SEO Data API MCP Server
Enables querying the SE Ranking API for SEO data and analytics using natural language.
README
MCP Server
Installation
Getting a copy of the project
Save a copy of the project to a local directory, for example /path/to/seo-data-api-mcp-server.
Set up environment variables
The SE Ranking Data API access key is set via an environment variable, which can be done globally or through the Claude Desktop configuration.
export SERANKING_API_TOKEN=your-token-here
Option 1: Installation as an NPM package
Prerequisites
- Node.js 18+
cd /path/to/seo-data-api-mcp-server
npm install
npm run build
# Check that the build starts successfully and press Ctrl+C to stop it.
npm start
Option 2: Build the Docker Image
Prerequisites
- Docker, Docker Compose
cd /path/to/seo-data-api-mcp-server
docker compose build
# Check that the image is built and named `se-ranking/seo-data-api-mcp-server`:
docker image ls
Connect to Claude Desktop
Claude Desktop reads its configuration from claude_desktop_config.json.
- Click on the Claude menu and select “Settings…”.
- In the Settings window, navigate to the “Developer” tab in the left sidebar.
- Click the “Edit Config” button to open the configuration file. This action creates a new configuration file if one doesn’t exist, or opens your existing configuration.
The file is located at:
- macOS: ~/Library/Application\ Support/Claude/claude_desktop_config.json
- Windows: %AppData%\Claude\claude_desktop_config.json
- Linux: ~/.config/Claude/claude_desktop_config.json
Example of Claude Desktop configuration for MCP server, running via Node:
{
"mcpServers": {
"se-ranking/seo-data-api-mcp-server": {
"command": "node",
"args": ["/path/to/seo-data-api-mcp-server/dist/index.js"],
"env": {
"SERANKING_API_TOKEN": "your-token-here"
}
}
}
}
Example of Claude Desktop configuration for MCP server, running via docker image:
{
"mcpServers": {
"se-ranking/seo-data-api-mcp-server": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"SERANKING_API_TOKEN",
"se-ranking/seo-data-api-mcp-server"
],
"env": {
"SERANKING_API_TOKEN": "your-token-here"
}
}
}
}
After saving claude_desktop_config.json, restart Claude Desktop. You should see the server under MCP Servers/Tools.
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.