API Tools
citare.ai
Provides user authentication, project management, and audit history for an API platform.
ENDPOINT 1
https://www.citare.ai/mcp
MCP server metadata
- Name
- citare
- Version
- 0.1.0
Citare exposes every dashboard action as an MCP tool. Start with `getMe` to discover your projects (returns user + plan + memberships). Use the returned project id for project-scoped tools like `listAudits` or `getBotAnalytics`. Write tools (create/update/delete) require write scopes on the API key. See https://citare.ai/api-docs for the full operation catalog.
Known tools 59
pingSmoke endpoint — confirms auth chain works Returns the authenticated user's id + plan + the scope the key carried for this call.
Inferred read-onlygetMeAuthenticated user + plan + project memberships Identity for the bearer token: user id, email, name, resolved plan (highest across all the user's projects), the calling key's metadata, and the list of projects the user is a member of with role.
Potential side effectslistProjectsList projects you have access to Every project the authed user is a member of, with role.
Inferred read-onlylistAuditsAudit history + latest result Latest completed audit (or null) + history.
Inferred read-onlylistKeywordsTracked keywords for the project Keywords the user has subscribed to daily rank snapshots for.
Inferred read-onlygetBacklinksCached backlinks summary DFS backlink summary for the project's domain.
Inferred read-onlygetBotAnalyticsBot Analytics dashboard payload Headline counts + daily sparkline + by-bot table + by-path table + recent hits + property list in one round trip.
Inferred read-onlygetAlertsAlert rules + recent fired events Rules the project has set up + recent fired events.
Inferred read-onlygetReportsReport templates + recent runs Templates the project has configured + runs (history).
Inferred read-onlygetCompetitiveAnalysisSaved competitor sets for the project Lists the project's saved competitor sets (up to 5 domains per set).
Inferred read-onlygetAiSearchTrafficAI-tool referral traffic (GA4-derived) 30-day summary of human clicks from ChatGPT / Perplexity / Gemini / Claude / Copilot etc.
Inferred read-onlygetIntegrationsConnection status for inbound data integrations GSC / BWT / GA4 / DataForSEO / etc.
Inferred read-onlygetBrandRadarRecent Brand Radar dispatch runs + dispatches Recent dispatch runs (Brand Radar's primary unit of work) with their per-run dispatched queries.
Inferred read-onlylistWebhooksList webhook endpoints Returns endpoints + their subscriptions + last-delivery status.
Inferred read-onlylistWebhookDeliveriesRecent delivery attempts for an endpoint Each row carries the event, response code, response body snippet, and the error message on failure.
Potential side effectscreateWebhookRegister a webhook endpoint Generates a signing secret server-side and returns it ONCE.
Inferred read-onlydeleteWebhookDelete a webhook endpoint Endpoint + its delivery history removed.
Potential side effectscreateProjectCreate a project Creates a project and adds the caller as `agency_admin`.
Potential side effectscreateReportTemplateCreate a report template Widget keys must come from the registry.
Potential side effectsupdateReportTemplateUpdate a report template Partial update of any template field.
Potential side effectsdeleteReportTemplateDelete a report template Past runs stay; template deleted.
Potential side effectscreateBotPropertyRegister a property for AI bot tracking Returns the raw ingest API key ONCE.
Inferred read-onlyrotateBotPropertyKeyRotate a property's API key Old key stops working the instant the new one is generated.
Inferred read-onlydeleteBotPropertyDelete a property Hit history for this property cascades; project-level aggregates remain.
Potential side effectsrefreshBacklinksForce a fresh DataForSEO backlinks pull Consumes DFS quota — counts against the daily $10 cap.
Inferred read-onlyrunCompetitiveAnalysisRun a competitive keyword-gap analysis Up to 5 competitor domains.
Inferred read-onlyrunSerpOverviewRun a SERP overview for a keyword 24h KV cache; pass `force: true` to bypass.
Inferred read-onlydisconnectIntegrationDisconnect an integration Removes the credential row for the integration.
Inferred read-onlygetAuditLogYour own API call history Every API call made with one of your keys lands here — successes AND failures.
Inferred read-onlyrunAiRobotsCheckerCheck robots.txt allow/block for every AI crawler Fetches `robots.txt` from the URL's origin and runs deterministic rule evaluation per bot from the canonical list (GPTBot, ClaudeBot, PerplexityBot, OAI-SearchBot, Google-Extended, etc.).
Inferred read-onlyrunSitemapCheckerValidate sitemap.xml structure + lastmod coverage Auto-detects the sitemap from robots.txt, parses XML, follows index nesting, reports lastmod coverage + AI-readiness flags.
Inferred read-onlyrunJsonLdInspectorInspect every JSON-LD block on a page Fetches the URL's HTML, extracts every JSON-LD block, and validates each against schema.org expected fields.
Inferred read-onlyrunJsonLdGeneratorGenerate paste-ready JSON-LD for a schema type Pure-CPU validator + serializer.
Inferred read-onlyrunLlmsTxtGeneratorGenerate a starter llms.txt from a description tree Pure-CPU validator + serializer following the llmstxt.org spec.
Inferred read-onlyrunRobotsTxtGeneratorGenerate a starter robots.txt with AI-friendly defaults Pure-CPU renderer.
Inferred read-onlyrunBrandDisambiguationWikidata + Wikipedia entity check for a brand name Searches Wikidata + Wikipedia for entities matching the brand name.
Inferred read-onlyrunCitationScorer0-100 score for how AI-citable a page is Composite of 6 readiness checks (page HTML + robots.txt + sitemap + llms.txt + JSON-LD + optional brand disambiguation).
Inferred read-onlyrunFreeBacklinkCheckerTop 20 backlinks by rank desc for any domain DataForSEO-backed.
Inferred read-onlyrunBrokenLinkCheckerFind 4xx pages that still receive inbound links DataForSEO-backed.
Inferred read-onlyrunWebsiteAuthorityChecker0-100 authority score (DR-equivalent) for any domain OpenPageRank-backed (free, unlimited).
Inferred read-onlyrunKeywordGenerator50+ keywords + monthly volume from a seed term DataForSEO-backed.
Inferred read-onlyrunKeywordDifficultyCheckerScore a single keyword's difficulty 0-100 DataForSEO native KD.
Inferred read-onlyrunKeywordRankCheckerCheck a domain's live position for a keyword scrape.do primary + SerpAPI fallback.
Inferred read-onlyrunSerpCheckerLive top-10 Google organic results for a keyword scrape.do primary + SerpAPI fallback.
Inferred read-onlyrunSerpOverviewToolTop 10 + per-URL authority + highlight your/competitor domains Live top 10 enriched with OpenPageRank authority on every ranking domain.
Inferred read-onlyCONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.citare]
url = "https://www.citare.ai/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"citare": {
"type": "http",
"url": "https://www.citare.ai/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: citare
Remote MCP URL: https://www.citare.ai/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"citare": {
"url": "https://www.citare.ai/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"citare": {
"type": "http",
"url": "https://www.citare.ai/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "citare",
"transport": "streamable-http",
"url": "https://www.citare.ai/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
TRUST AND VERIFICATION EVIDENCE
Trust Data Available
BuiltWith Trust API v2 evidence for citare.ai was fetched 2026-08-25T16:55:32.016Z.
citare.ai is assessed as Neutral: No suspicious signals found, but no strong positive signal either
Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.