OuterciteOutercite

Model Context Protocol (MCP)

Connect Outercite to MCP-compatible AI assistants so they can query your citation data, competitors, and agency portfolio directly.

The Outercite MCP server lets MCP-compatible AI assistants (such as Claude) read your Outercite data directly, so you can ask questions like "what is my citation rate this week?" or "which competitors are gaining on Perplexity?" right inside your assistant. It is the natural companion to a product about AI search: the same engines that cite your brand can now query how you are being cited.

What you'll learn

  • What the Model Context Protocol is and why Outercite exposes one
  • Which tools the Outercite MCP server provides
  • How to connect it to your MCP client

What is MCP?

The Model Context Protocol is an open standard for connecting AI assistants to external tools and data. An MCP server exposes a set of typed tools; an MCP client (your AI assistant) can call them on your behalf. Outercite ships an MCP server so your assistant can pull live citation analytics without you opening the dashboard.

MCP access uses the same API key as the Outercite API. Generate or manage keys under Settings. Treat the key like a password: anyone with it can read your workspace data.

Tools the server provides

The server groups its tools by area. Read-only tools fetch data; a few write tools let an assistant take action when you ask it to.

Workspace tools (outercite_*)

ToolWhat it does
get_dashboard_statsRolled-up citation rate, visibility score, 7-day delta, pending actions
get_platform_coveragePer-engine citation rate and trend across the six engines
list_keywordsTracked prompts with visibility, position, and platform coverage
list_competitorsCompetitors with share of voice, threat score, and threat level
list_citations / get_citationVerified citations with tier, confidence score, and proof snippet
list_insightsGenerated insights and their attached actions
list_actions / mark_action_completeAction items and their status
get_brief_latestThe latest generated brief for the workspace
add_keyword / add_competitorAdd a tracked prompt or competitor
trigger_auditKick off a fresh verification run
create_webhook / list_webhooks / delete_webhookManage webhooks

Agency tools (agency_*)

ToolWhat it does
list_clientsAll client workspaces with visibility and activity
portfolio_healthClients bucketed as Needs Attention, Monitoring, or On Track
compare_clientsSide-by-side comparison across clients
generate_client_briefA brief for a single client
recent_activityRecent citation activity across the portfolio

Agency tools are available to agency (parent org) accounts. Scope a request to one client by passing its workspace id, or omit it to work across the whole portfolio.

Connecting the server

You connect the Outercite MCP server in your AI assistant's MCP settings. The exact steps depend on the client, but the shape is the same:

  1. Get an API key from your Outercite account under Settings.
  2. Add the Outercite MCP server to your client's MCP configuration and supply the key.
  3. Reload your client. The outercite_* (and, for agencies, agency_*) tools become available.
{
  "mcpServers": {
    "outercite": {
      "url": "https://mcp.outercite.ai",
      "headers": { "Authorization": "Bearer <your-api-key>" }
    }
  }
}

The configuration above is an illustrative example. Use the exact server address and connection method shown in your Outercite account, which may change as the MCP server evolves.

Try this in Outercite

Generate an API key in your account settings, add the Outercite server to your assistant, then ask it: "What is my citation rate across all six engines this week?"

Was this helpful?