Docs · MCP
Audit your GEO from inside Claude.
BeCited ships as an MCP server: connect it to Claude, Cursor, or any MCP client and your assistant gains a run_audit tool. No key needed for the free teaser depth; an API key from your dashboard unlocks plan depth, fix lists, and report retrieval.
How do I connect it?
Add the server to your MCP client config (Claude Desktop, Claude Code, Cursor):
{
"mcpServers": {
"becited": {
"url": "https://becited.co/api/mcp"
}
}
}Then ask: "Audit example.com with becited." With an API key (create one in your dashboard), audits run at your plan's depth and save to your dashboard:
{
"mcpServers": {
"becited": {
"url": "https://becited.co/api/mcp",
"headers": { "Authorization": "Bearer bc_YOUR_KEY" }
}
}
}What tools does it expose?
run_audit(domain, tracks?)GEO (CITE) + SEO Health scores with evidence, top fixes, and a shareable report link. Works without a key at teaser depth.
get_fixes(domain)The full prioritized fix list from your latest audit of a domain. Requires a key.
get_report(audit_id)Retrieve one of your saved audits. Requires a key.
Is there a plain REST API?
Yes; the MCP server sits on REST v1: POST /api/v1/audits, GET /api/v1/audits/:id, GET /api/v1/fixes?domain=. Same Bearer key, same quotas. OpenAPI docs are on the way.