PureRank MCP Server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@PureRank MCP Serverscore this article draft for AI content risk"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
PureRank MCP server
A small Model Context Protocol server that gives your AI agent a pre-publish QA gate and site-level AI-content-spam scoring, backed by PureRank.
If your pipeline drafts and publishes content with an LLM, wire this in so the agent scores every draft before it publishes — and only ships content that reads as human-edited, not scaled AI slop of the kind Google's spam updates target.
Free and open-source. The connector is free; it uses PureRank's public API.
Free quota, no crawl needed for drafts. A free PureRank account includes an API key with a daily allowance for the draft gate (25 draft scores/day) plus a few full site scans/day. That is enough to gate a real publishing cadence. Higher volume is on the paid plans.
No secrets in code. Configured entirely with environment variables.
Quick start
1. Get an API key — create a free account at https://pure-rank.com, open the dashboard, and create an API key (the free plan includes one). Keep it secret.
2. Add the server to Claude Code (requires Node.js ≥ 18):
claude mcp add purerank --env PURERANK_API_KEY=YOUR_KEY -- npx -y purerank-mcp-serverOr add it to any MCP client config (.mcp.json / claude_desktop_config.json):
{
"mcpServers": {
"purerank": {
"command": "npx",
"args": ["-y", "purerank-mcp-server"],
"env": { "PURERANK_API_KEY": "YOUR_KEY_HERE" }
}
}
}3. Use it. Ask your agent things like "score this draft with PureRank before publishing", or make it a standing rule: draft → purerank_score_draft → publish only if gate == "pass", otherwise revise and re-score.
Related MCP server: ai-visibility-mcp
Tools
Tool | What it does |
| Score ONE draft (text or HTML) for AI-content-spam risk without crawling. Returns a 0–100 score, a |
| Crawl and score a whole site. Submits the scan, polls to completion, returns the score, top risk signals, and a shareable report link. |
| Fetch the latest report summary for a domain (or a report id) without re-scanning. |
purerank_score_draft
The pre-publish gate. Content-only — nothing is fetched, so it is fast and cheap.
Input: { text? , html? , title? , url? , response_format? } — provide text (plain/markdown) or html.
Output (JSON):
{
"score": 82,
"gate": "fail",
"verdict": "Likely AI-generated",
"confidence": "high",
"words": 512,
"language": "en",
"signals": { "lexical": 100, "burstiness": 78, "vocabulary": 40, "repetition": 5, "formatting": 12 },
"explanations": ["39.5 AI stock phrases /1k words", "uniform sentence rhythm (CV 0.31)"],
"embedding": { "available": true, "margin": 0.34, "adjustment": 12 }
}Gate bands: pass (<30, publish-ready) · warn (30–54, review) · fail (≥55, revise).
purerank_scan_site
Input: { url , max_pages? , wait_seconds? , response_format? }
Output (JSON): { domain, score, verdict, confidence, profile, pages_analyzed, top_signals[], report_url, report_id, cached }. Established global brands return { not_applicable: true, note } and are not scored.
purerank_get_report
Input: { query , response_format? } — query is a domain, a report id, or a /r/{id} URL.
Output: same summary shape as purerank_scan_site (domain lookups return the latest public report).
All tools accept response_format: "markdown" (default, human-readable) or "json" (machine-readable). Machine-readable data is also always returned as structuredContent.
Configuration (environment variables)
Variable | Required | Default | Description |
| yes | — | Your PureRank API key. |
| no |
| API base URL. Override to point at a local or self-hosted instance. |
| no |
| Default seconds to wait for a site scan before returning a still-running status. |
| no |
| Per-request network timeout. |
Running from source
git clone https://github.com/vadimsv1/purerank-mcp-server.git
cd purerank-mcp-server
npm install
npm run build
claude mcp add purerank --env PURERANK_API_KEY=YOUR_KEY -- node /absolute/path/to/purerank-mcp-server/dist/index.jsInspect it with the MCP Inspector:
npx @modelcontextprotocol/inspector node dist/index.jsDevelopment: npm run dev (tsx watch) · npm run build (tsc → dist/) · npm start.
Notes
stdio transport: logs go to stderr; stdout is reserved for the MCP protocol.
The score is an explainable heuristic from public signals — not a Google metric and not proof of authorship. Use it to prioritize human review.
API reference: https://pure-rank.com/api/docs.
License
MIT © SVS Project LLC
This server cannot be deployed
Maintenance
Related MCP Connectors
Agent-readiness scanner (0-5 score), robots.txt + llms.txt generators, managed agent enablement.
Scan any public site for AI-agent visibility; get scored findings, a machine-readable fix pack, and
Website intelligence audits for AI agents: free preview plus x402-paid Agent Readiness scoring
Scan any website's AI readiness: AI search visibility and AI agent usability. Free, no auth.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceEnables AI content detection with sentence-level and paragraph-level AI probability scoring to identify and fix AI-generated text.MIT
- AlicenseNot gradedqualityBmaintenanceEnables AI agents to check whether AI assistants recommend a brand and audit a site's AI-agent readiness, providing visibility scores and specific gaps.MIT
- AlicenseAqualityAmaintenanceEnables AI agents to check whether a public website is crawlable, understandable, and ready for AI search workflows through local-only audits of robots.txt, sitemaps, metadata, and llms.txt.345 npm1MIT
- FlicenseNot gradedqualityCmaintenanceEnables to precheck landing pages and Figma frames for readiness to be cited in AI Overviews, providing audit scores, grades, and improvement actions.-