Citation Intelligence

API key required
Automation

Use when the user wants to know which URLs AI engines cite for a query, whether their domain is being cited by ChatGPT/Claude/Perplexity/Gemini/Google AI Overviews/Bing, what queries their site is cited for, how citation rate changes over time, or how their citation coverage compares to competitors. Self-hosted, BYO API keys, no backend.

Install

openclaw skills install automatelab-citation-intelligence

citation-intelligence

Pairs with the @automatelab/citation-intelligence server (12 tools across 6 namespaces). Queries which URLs Perplexity, Claude, ChatGPT, Gemini, Google AI Overviews, and Bing cite for any query — self-hosted, no account, no centralized backend.

Tool namespaces

citations.* — query-level: who cites what

ToolUse when
citations.provenanceStart here. Fan a query across engines; returns per-URL cross-engine consensus matrix
citations.checkURLs cited by a single engine for a query (cheaper than provenance)
citations.evidenceExtract the cited snippet — why a URL is cited, not just that it is
citations.predictCitation likelihood from public signals — no LLM fired
citations.trendTime-series citation rate + per-query gained/lost deltas
citations.freshnessRecency score for pages an engine cites

domain.* — domain-level: am I cited, what for

ToolUse when
domain.am_i_citedFan across all engines for a domain; cross-engine consensus. Default first tool for "is my site cited?"
domain.cited_forWhich queries the domain has been cited for (from local cache)

signals.* — page-level: citation signals

ToolUse when
signals.ai_overviewGoogle AI Overview eligibility check for a URL
signals.answer_boxFeatured snippet / answer box signals

competitors.*, panel.*, audit.* — tracking and comparison

ToolUse when
competitors.compareCompare citation coverage between your domain and a competitor
panel.runRun a batch of queries and aggregate citation results

Default workflows

"Is my site cited?"

domain.am_i_cited(domain: "example.com", engine: "auto")
→ Per-engine breakdown + consensus. Pin engine= to reduce cost.

"Who ranks for this query?"

citations.provenance(query: "best n8n alternatives")
→ Cross-engine URL matrix with interpretation notes

"Why does ChatGPT cite them and not me?"

citations.evidence(query: "...", url: "competitor.com/page")
→ The cited snippet; compare against your page

Server setup

Claude Code (.claude/mcp.json):

{
  "mcpServers": {
    "citation-intelligence": {
      "command": "npx",
      "args": ["-y", "@automatelab/citation-intelligence"]
    }
  }
}

Claude Desktop (claude_desktop_config.json):

{
  "mcpServers": {
    "citation-intelligence": {
      "command": "npx",
      "args": ["-y", "@automatelab/citation-intelligence"]
    }
  }
}

Requires Node 20+. Add your API keys as environment variables — each engine you want to query needs its own key (Perplexity, OpenAI, Anthropic, Google). See the README for the full list.


Developed by AutomateLab. Source: github.com/AutomateLab-tech/citation-intelligence.