Skip to main content

MCP server for the Cited GEO platform

Project description

cited-mcp

MCP server for the Cited Generative Engine Optimization (GEO) platform. Exposes 56 tools that let AI assistants like Claude manage businesses, run GEO audits, generate recommendations, work a prioritized action plan, verify fixes via the Validation Engine, and create solutions — all through the Model Context Protocol.

Install

pip install cited-mcp

Or run directly without installing:

uvx cited-mcp

Usage

Claude Desktop (Custom Connector — recommended)

No local install required. Claude connects to Cited's hosted MCP server directly:

  1. Open Claude Desktop → SettingsCustomize > Connectors
  2. Click "+""Add custom connector"
  3. Enter URL: https://mcp.youcited.com/mcp
  4. Click Add

Your browser will open for authentication on first use. See Anthropic's connector guide for details.

Requires: Claude Pro, Max, Team, or Enterprise plan.

Claude Desktop (Developer Config — alternative)

If Custom Connectors aren't available, use the developer config with mcp-remote:

{
  "mcpServers": {
    "cited": {
      "command": "npx",
      "args": ["mcp-remote", "https://mcp.youcited.com/mcp"]
    }
  }
}

Add to Settings → Developer → Edit Config, then restart Claude Desktop.

Prerequisite: Node.js must be installed for npx.

Claude Desktop (local stdio server)

If you prefer running the server locally:

{
  "mcpServers": {
    "cited": {
      "command": "uvx",
      "args": ["cited-mcp"],
      "env": {
        "CITED_TOKEN": "your-jwt-token"
      }
    }
  }
}

Get your token by running cited login and then cited auth token with the cited-cli.

Claude Code

Add the remote server as a tool source in your Claude Code settings or use the cited-plugins/ configuration from the monorepo.

Cursor

Add a .cursor/mcp.json file to your project root (or configure globally in ~/.cursor/mcp.json):

{
  "mcpServers": {
    "cited": {
      "command": "npx",
      "args": ["mcp-remote", "https://mcp.youcited.com/mcp"]
    }
  }
}

Verify Node.js is installed first:

node --version   # should print v18+ or v20+

If not installed, run brew install node or download from nodejs.org.

Then in Cursor: open Settings (Cmd+,) → search "MCP" → verify the server appears and shows a green status indicator. Use Cited tools in Composer (Agent mode) or Chat by asking Claude to interact with your GEO data.

Standalone

# Local stdio mode (requires CITED_TOKEN env var)
CITED_TOKEN=your-jwt-token cited-mcp

# Remote HTTP mode (used for hosted deployment)
cited-mcp-remote

Updating to new Cited features

Cited adds new tools regularly. To access new tools after a release, disconnect and reconnect the Cited connector in your Claude Desktop or Claude.ai connector settings — restarting Claude alone is not enough, because the connector's tool list is cached at registration time. Once reconnected, ask the agent to call whats_new to see what changed since you last connected.

Tools

Auth & meta

Tool Description
ping Readiness check — returns server version, tool count, and tool-surface fingerprint
check_auth_status Check current authentication status
login Authenticate via browser OAuth flow
logout Clear stored authentication token
whats_new Diff the current tool surface against a prior fingerprint or version

Businesses

Tool Description
list_businesses List all businesses on your account
get_business Get details for a specific business
create_business Create a new business
update_business Update business details
delete_business Delete a business
crawl_business Start a website crawl for a business
get_health_scores Get GEO health scores for a business
get_usage_stats Get account usage statistics and plan info

Audit Templates

Tool Description
list_audit_templates List all audit templates
get_audit_template Get a specific template with questions
create_audit_template Create a new audit template
update_audit_template Update template name, description, or questions
delete_audit_template Delete an audit template

Audits

Tool Description
start_audit Run a GEO audit using a template
get_audit_status Check audit job status
get_audit_result Get completed audit results
list_audits List all audits
export_audit Export a completed audit as a PDF report

Recommendations

Tool Description
start_recommendation Generate recommendations from a completed audit
get_recommendation_status Check recommendation job status
get_recommendation_result Get full recommendation results
get_recommendation_insights Get actionable insights with risk levels and coverage scores
list_recommendations List all recommendation jobs
get_recommendation_check_status Run all 62 deterministic GEO/SEO checks (Validation Engine) — counts + per-check detail
validate_recommendation Re-run the deterministic check for a single recommendation
get_recommendation_validation_latest Fetch the latest stored validation result for a recommendation

Solutions

Tool Description
start_solution Generate a solution for a specific insight or tip
start_solutions_batch Start up to 10 solutions in one call
get_solution_status Check solution job status
get_solution_result Get completed solution with implementation steps
list_solutions List all solutions

Jobs

Tool Description
get_job_status Check status of any job by type and ID
cancel_job Cancel a running job

HQ Dashboard

Tool Description
get_business_hq Get comprehensive business dashboard with health scores, personas, products

Analytics

Tool Description
get_analytics_trends Get KPI trends over time
get_analytics_dashboard Combined analytics dashboard (KPI trends + question performance + benchmarks)
compare_audits Compare an audit against its baseline

Agent API

Tool Description
get_business_facts Get structured business facts
get_business_claims Get verifiable claims about a business
get_competitive_comparison Get competitive analysis data
get_semantic_health Get semantic readiness signals
buyer_fit_query Run a buyer-fit simulation query

Action Plan

Tool Description
get_action_plan Get a prioritised checklist of next steps to improve GEO
get_quick_wins Get low-effort, high-impact actions to tackle first
mark_action_done Mark a priority action as completed
dismiss_action Dismiss a priority action as not applicable
get_action_progress Get progress summary (completed vs remaining)

Example Workflow

Once connected, ask Claude to run a full GEO audit:

"List my businesses, then run a GEO audit on Acme Corp using the default template. When it's done, generate recommendations and show me the top insights."

Claude will chain the tools automatically:

  1. list_businesses → find the business ID
  2. list_audit_templates → find or create a template
  3. start_audit → kick off the audit
  4. get_audit_status → poll until complete
  5. start_recommendation → generate recommendations
  6. get_recommendation_insights → display actionable results
  7. start_solution → generate implementation steps for top issues

Plan-Based Tool Access

Tools are gated by subscription tier. All tiers can read data; write operations require higher plans.

Tier Tools Available
Growth (entry) Auth, list/get businesses, crawl, health scores, audits (start/status/result/list), all recommendation tools, action-plan reads (get_action_plan, get_quick_wins), Validation Engine reads, job status — 22 tools
Scale Everything in Growth + create/update/delete businesses, create/update/delete audit templates, all solution tools, batch solutions, export audit, cancel job, action-plan writes (mark_action_done, dismiss_action, get_action_progress) — 38 tools
Pro Everything in Scale + usage stats, HQ dashboard, analytics, agent API — 56 tools

When a user calls a tool above their plan, the server returns a structured error with an upgrade link:

{
  "error": true,
  "message": "The 'create_business' tool requires the Scale plan or higher.",
  "upgrade_url": "https://app.youcited.com/settings/billing",
  "required_tier": "scale",
  "current_tier": "growth"
}

Environment Variables

Variable Description
CITED_TOKEN JWT auth token (stdio mode)
CITED_AGENT_API_KEY Agent API key (alternative to JWT)
CITED_API_URL API base URL (default: https://api.youcited.com)
CITED_ENV Environment: prod, dev, or local
MCP_URL Public URL of this MCP server (remote mode)
JWT_SECRET Secret for signing OAuth tokens (remote mode)

Development

# Install in editable mode with dev dependencies
pip install -e packages/core
pip install -e "packages/mcp[dev]"

# Run tests
pytest tests/test_mcp_tools.py tests/test_mcp_server.py packages/mcp/tests/ -v

# Lint and type check
ruff check packages/mcp/
mypy packages/mcp/src --ignore-missing-imports

Privacy Policy

See our Privacy Policy for details on data collection, usage, storage, and third-party sharing.

License

Proprietary — see youcited.com for terms.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cited_mcp-0.5.0.tar.gz (80.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cited_mcp-0.5.0-py3-none-any.whl (74.1 kB view details)

Uploaded Python 3

File details

Details for the file cited_mcp-0.5.0.tar.gz.

File metadata

  • Download URL: cited_mcp-0.5.0.tar.gz
  • Upload date:
  • Size: 80.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for cited_mcp-0.5.0.tar.gz
Algorithm Hash digest
SHA256 2c48c8ecb8757e8822e275e1b58f7f1ed56d4849289001739b54c218aceb8038
MD5 36bf71ca4c511c123e422279b63902cf
BLAKE2b-256 998febef9d0412434a330674112ceae8225c3e1078b93d6cfe74c64326ae8f86

See more details on using hashes here.

File details

Details for the file cited_mcp-0.5.0-py3-none-any.whl.

File metadata

  • Download URL: cited_mcp-0.5.0-py3-none-any.whl
  • Upload date:
  • Size: 74.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for cited_mcp-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0bb1d6a2922f770097baf42178a37fb37f0cce0fb2c142c8f2a934b6f772d1e9
MD5 097a4f37de0d7e8590f897556cef5341
BLAKE2b-256 64b61d9cf556372be40bd42b71687a1f7be3bb9ddcd56db78c31321d1665d7ae

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page