VerifiedDR API · v1
VerifiedDR MCP Server
The whole VerifiedDR API as Model Context Protocol tools. Connect Claude, Cursor, or any MCP client and your agent can read scores, run visibility scans, research keywords, work growth tasks, and manage backlink deals.
https://verifieddr.com/api/v1Connect in one command
The server speaks streamable HTTP. Authenticate with the same vdr_ API key the HTTP API uses; create one in the dashboard under API.
claude mcp add --transport http verifieddr https://verifieddr.com/api/mcp \
--header "Authorization: Bearer vdr_your_api_key"{
"mcpServers": {
"verifieddr": {
"url": "https://verifieddr.com/api/mcp",
"headers": { "Authorization": "Bearer vdr_your_api_key" }
}
}
}{
"mcpServers": {
"verifieddr": {
"command": "npx",
"args": ["-y", "verifieddr", "mcp"],
"env": { "VERIFIEDDR_API_KEY": "vdr_your_api_key" }
}
}
}The stdio form runs the vdr mcp bridge from the VerifiedDR CLI, which forwards to this same remote server, so both paths expose identical tools.
What your agent can do
62 tools covering the full API surface, one tool per action, each with a typed schema and a description written for agents.
Scores & trust
lookup_site, get_site, get_truedr, get_trust_map, get_badge_snippets, export_site, monitor_sites, verify_site
Classic DR, TrueDR, trust evidence, and backlink maps for any approved site; monitoring and badge checks for yours.
AI visibility
get_ai_visibility, run_ai_visibility_scan, diff_ai_visibility_runs, add/import/reorder/remove prompts
How often ChatGPT, Perplexity, and Google AI Mode name your site, plus full control of the tracked questions.
Keywords
keyword_difficulty, keyword_suggestions, list/add/refresh/remove tracked keywords
The DR the Google top 10 demands, your gap to it, and winnable keywords any site already ranks 4-30 for.
Growth & Search Console
get_growth_plan, run_growth_plan, update_growth_task, get_gsc_performance, get_gsc_audit, run_gsc_audit
A ranked task plan agents can execute and report back on, plus Search Console performance and index audits.
Marketplace & earnings
marketplace_packages, marketplace_sites, cart tools, marketplace_orders, earn_* publisher tools
Buy placements, brief orders, and run your websites as publishers: assignments, live URLs, and payouts.
Partnerships & inbox
find_sites, find_partner_opportunities, contact_partner, inbox_list, inbox_thread, inbox_reply
Discover verified partners, draft outreach with a dry-run preview, and work your partnership conversations.
Metering, plans, and safety
MCP calls are the same API calls, with the same rules.
- Every tool call spends one API call from your plan quota; the
account_usagetool reports plan, AI prompt budget, and remaining quota so agents can budget before acting. - Paid features answer with an
upgradeUrlinstead of data, so an agent always knows why something is locked. - Checkout tools only return a Stripe URL: an agent can assemble a cart, but a human enters the card.
- Joining the publisher network requires an explicit
acceptTerms: true, and outreach tools support a dry-run preview before any email is sent.
Try it raw
The endpoint is plain JSON-RPC 2.0 over HTTP, so you can poke it with curl.
curl -s https://verifieddr.com/api/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'curl -s https://verifieddr.com/api/mcp \
-H "Content-Type: application/json" \
-H "Authorization: Bearer vdr_your_api_key" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"lookup_site","arguments":{"site":"verifieddr.com"}}}'