PureRank MCP Server
Click on "Install 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: gptzero-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 installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityBmaintenanceRelease gate agents call before they tell users a public website is ready to ship. Scans public websites across security, SEO, accessibility, legal compliance, and sustainability.9MIT
- Alicense-qualityCmaintenanceEnables AI content detection with sentence-level and paragraph-level AI probability scoring to identify and fix AI-generated text.MIT
- Alicense-qualityBmaintenanceEnables 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.3381MIT
Related MCP Connectors
AI QA tester — real browsers scan sites for bugs, SEO, perf, and accessibility issues via chat.
SEO research, audits, backlinks, GSC, and content workflow tools for AI agents.
Deterministic trust gate for AI output: leaked-secret, prompt-injection & PII in one call.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/vadimsv1/purerank-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server