Maverank MCP server

Let AI agents (Claude, or anything speaking the Model Context Protocol) read your workspace's AI-visibility data and trigger scans.

Connect

The MCP server is hosted — nothing to install. Point your agent at https://maverank.com/mcp/ and authenticate with a team API key (create one in Team settings → API keys; Studio plan and up).

Claude Code (one command):

claude mcp add --transport http maverank https://maverank.com/mcp/ \
  --header "Authorization: Bearer <team API key>"

Claude Desktop / Cursor / any MCP client (JSON config):

{
  "mcpServers": {
    "maverank": {
      "type": "http",
      "url": "https://maverank.com/mcp/",
      "headers": {
        "Authorization": "Bearer <team API key>"
      }
    }
  }
}

Keys with the project_read permission cover every read tool; trigger_scan additionally needs project_write (and the Agency plan).

Tools

ToolWhat it returnsKey permission
list_projectsTracked brands with latest visibility scoresread
get_dashboardScore, KPIs with period deltas, per-engine breakdown, trend (range: 7/30/90)read
get_competitiveShare-of-voice matrix + attribute comparisonread
get_sourcesCitation leaderboard with presence flagsread
get_readinessReadiness score, pillars and the fix listread
trigger_scanStarts an on-demand scan (Agency plan)write

Example prompts for your agent

"Which of my clients dropped visibility this week, and what's the top readiness fix for each?" — the agent chains list_projectsget_dashboardget_readiness and drafts the client email for you.

← REST API reference