Gives AI assistants read access to RankPath
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"rankpath": {
"env": {
"RANKPATH_API_KEY": "your_api_key_here"
},
"command": "/path/to/rankpath-mcp-server"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP (Model Context Protocol) server that connects AI assistants to RankPath, giving them read access to your projects, crawl results, and SEO issues.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in marketing / analytics
MCP Server for GCP environment for interacting with various Observability APIs.
⚡ A Simple / Speedy / Secure Link Shortener with Analytics, 100% run on Cloudflare.
DataForSEO API modelcontextprotocol server
一键同步文章到多个内容平台,支持今日头条、WordPress、知乎、简书、掘金、CSDN、typecho各大平台,一次发布,多平台同步发布。解放个人生产力
MCP Security Weekly
Get CVE alerts and security updates for Rankpath Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP (Model Context Protocol) server that connects AI assistants to RankPath, giving them read access to your projects, crawl results, and SEO issues.
| Tool | Description |
|---|---|
list_projects | List all projects for the authenticated user |
get_project | Get details for a specific project by UUID |
get_crawl_history | Get paginated crawl history for a project |
get_latest_crawl | Get the latest crawl result with full SEO analysis |
get_issues | Get SEO issues, optionally filtered by severity or status |
Requires git and Rust (cargo). Installs the binary to /usr/local/bin or ~/.local/bin:
curl -fsSL https://raw.githubusercontent.com/rankpath-io/rankpath-mcp-server/main/bin/install-mcp.sh | bash
git clone https://github.com/rankpath/rankpath-mcp-server
cd rankpath-mcp-server
cargo build --release
# binary at: target/release/rankpath-mcp-server
Set your API key:
export RANKPATH_API_KEY=your_api_key_here
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"rankpath": {
"command": "/path/to/rankpath-mcp-server",
"env": {
"RANKPATH_API_KEY": "your_api_key_here"
}
}
}
}
claude mcp add rankpath /path/to/rankpath-mcp-server --env RANKPATH_API_KEY=your_api_key_here
Never commit your RANKPATH_API_KEY to source control. The server runs as a local stdio process and does not open any network ports. See SECURITY.md for the vulnerability reporting policy.