Live

MCP setup

Point Claude, Cursor or any MCP client at CrowdIntel and ask about wallets, markets, clusters and cohorts in conversation.

The MCP server lets an assistant read CrowdIntel directly — pull a wallet's stats, screen for edge, look up a cluster — without you writing a request. It is read-only: nothing it exposes can change state, place an order, or spend money.

Setup is one config block and a token. Everything on this page works on a free account.

Get a token

Mint an MCP token at Settings → API. It is free on every plan, no card. MCP tokens are prefixed cint_mcp_ and shown once at creation.

MCP tokens and REST API keys are different objects — a cint_api_ key will not authenticate against the MCP endpoint, and a cint_mcp_ token will not authenticate against /api/v1. Mint whichever the client needs.

The endpoint

http
https://mcp.crowdintel.xyz/mcp
  • Transport: remote Streamable HTTP, stateless JSON mode.
  • Auth: Authorization: Bearer cint_mcp_… on every request.
  • Read-only. Nothing here mutates state.

Claude Desktop

Add this to claude_desktop_config.json and restart Claude:

claude_desktop_config.json
{
"mcpServers": {
  "crowdintel": {
    "type": "http",
    "url": "https://mcp.crowdintel.xyz/mcp",
    "headers": {
      "Authorization": "Bearer cint_mcp_YOUR_TOKEN_HERE"
    }
  }
}
}

Claude Code

Register the server from the CLI:

bash
claude mcp add --transport http crowdintel https://mcp.crowdintel.xyz/mcp \
--header "Authorization: Bearer cint_mcp_YOUR_TOKEN_HERE"

To share it with a repository instead, commit the same server definition as .mcp.json in the project root:

.mcp.json
{
"mcpServers": {
  "crowdintel": {
    "type": "http",
    "url": "https://mcp.crowdintel.xyz/mcp",
    "headers": {
      "Authorization": "Bearer cint_mcp_YOUR_TOKEN_HERE"
    }
  }
}
}

Cursor

Edit ~/.cursor/mcp.json for every project, or .cursor/mcp.json for one:

~/.cursor/mcp.json
{
"mcpServers": {
  "crowdintel": {
    "url": "https://mcp.crowdintel.xyz/mcp",
    "headers": {
      "Authorization": "Bearer cint_mcp_YOUR_TOKEN_HERE"
    }
  }
}
}

Other clients

Zed takes the same URL under context_servers in its settings.json, with "source": "custom". Clients that cannot speak Streamable HTTP directly — older Claude Desktop builds among them — can bridge it:

json
{
"mcpServers": {
  "crowdintel": {
    "command": "npx",
    "args": ["-y", "mcp-remote", "https://mcp.crowdintel.xyz/mcp",
             "--header", "Authorization: Bearer cint_mcp_YOUR_TOKEN_HERE"]
  }
}
}

What the assistant can read

Tools appear automatically once the client connects. They group like this:

Wallets

ToolAnswers
get_wallet_statsThe wallet's profile and lifetime statistics.
get_wallet_timingWhen in a market's life this wallet enters.
get_wallet_alertsAlerts recorded on this wallet.
search_walletsFind wallets by name or address fragment.
get_leaderboardRanked boards.

Markets

ToolAnswers
get_marketMarket detail.
get_market_alertsAlerts recorded on a market.
get_market_flowOrder flow on a market.

Alpha discovery

ToolAnswers
scan_insider_signalsRecent counter-consensus entries.
screen_wallets_by_edgeScreen wallets by measured edge.
get_market_moversMarkets moving now.
get_whale_activityRecent large positions.

Cohorts, clusters and investigations

ToolAnswers
list_cohortsThe cohort registry and every floor.
get_cohortOne cohort's ranked members.
get_clusterA funding cluster by id.
find_funding_clustersClusters around a funder.
list_investigationsPublished investigations.
get_investigationOne investigation in full.

Ask in plain language — "screen for human wallets with positive EV lower bound over at least 200 resolved bets", "what does the funding graph around this address look like", "which cohort does this wallet clear the floor for" — and the client picks the tool.

Limits

Daily call caps by plan:

PlanMCP calls per day
Free — $020
Pro — $29/mo50
Terminal — $99/mo300
Terminal Pro — $299/mo1,500

There is also an hourly ceiling of 1,000 calls per token. No plan is denied access to any tool — the cap is the only wall, and every tool answers on a free token.

If you are building something that reads on a schedule rather than in conversation, use the REST API instead. It is the same data with a much higher ceiling, and it does not spend an assistant's turn.

Next

  • API overview — the REST surface behind the same data.
  • Quickstart — key to first response in about five minutes.
Live
Beta
···v0.1.0
CrowdIntel needs a newer browser

Your device is on iOS 15 or older. CrowdIntel uses features (color-mix, WebGL2, modern auth) that require iOS 16+ / Safari 16+.

iPhone 7 maxes out at iOS 15, so the site can't render here. Open CrowdIntel on a desktop browser or a newer phone.

crowdintel.xyz

◆ legacy browser fallback