Server data from the Official MCP Registry
Polymarket whale trades and smart-money signals as agent tools, paid per call via x402.
Polymarket whale trades and smart-money signals as agent tools, paid per call via x402.
Valid MCP server (4 strong, 3 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry.
7 files analyzed · 1 issue found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: BUYER_PRIVATE_KEY
Environment variable: X402_NETWORK
Environment variable: MAX_PRICE_USD
Environment variable: PREDGE_BASE_URL
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-predgeai-whale-data-mcp": {
"env": {
"X402_NETWORK": "your-x402-network-here",
"MAX_PRICE_USD": "your-max-price-usd-here",
"PREDGE_BASE_URL": "your-predge-base-url-here",
"BUYER_PRIVATE_KEY": "your-buyer-private-key-here"
},
"args": [
"-y",
"@predge/whale-data-mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
MCP server that exposes the Predge Whale Data x402 API (Polymarket whale trades + smart-money signals) as tools. Payment is handled under the hood: each paid tool call signs a USDC micropayment via an x402 client — the agent just calls the tool and gets data back. You supply a funded buyer key.
Defaults to Base mainnet (the live Predge API is mainnet-only). Paid tools spend real USDC — typically $0.005–$0.03/call, hard-capped at
MAX_PRICE_USD($0.05 by default) before any money moves. Use a dedicated, low-balance buyer wallet.
Claude Code:
claude mcp add predge-whale-data \
-e BUYER_PRIVATE_KEY=0xYOUR_FUNDED_BASE_MAINNET_KEY \
-e X402_NETWORK=base \
-- npx -y @predge/whale-data-mcp
Claude Desktop / Cursor / any MCP client — add to the client's MCP config:
{
"mcpServers": {
"predge-whale-data": {
"command": "npx",
"args": ["-y", "@predge/whale-data-mcp"],
"env": {
"BUYER_PRIVATE_KEY": "0xYOUR_FUNDED_BASE_MAINNET_KEY",
"X402_NETWORK": "base"
}
}
}
}
That's it — the agent gets 8 tools (7 paid routes + 1 free discovery tool). No API keys, no account; the buyer key pays USDC per call on Base. Fund it with a few dollars of USDC (the facilitator pays gas, so no ETH needed).
| Tool | Price | Returns |
|---|---|---|
predge_list_endpoints | free | API description + every endpoint with its price/schema (call first) |
predge_whales_latest | ~$0.005 | Latest whale trades ≥$10k (15-min delay). Param: limit (1-100) |
predge_whale_market | ~$0.01 | 7-day whale activity for one market. Param: condition_id |
predge_signals_daily | ~$0.02 | 24h digest: top markets, net flow, largest bets |
predge_wallets_leaderboard | ~$0.01 | Wallets by realized win rate. Params: window (7d|30d), limit |
predge_wallet_profile | ~$0.01 | Wallet score, win rates, categories, last 20 trades. Param: address |
predge_markets_movers | ~$0.005 | Largest YES-price moves. Param: window (1h|6h|24h) |
predge_signals_consensus | ~$0.03 | Smart-money (score>70) net flow + direction per market |
Every paid result includes a note with the on-chain settle tx.
| Var | Default | Notes |
|---|---|---|
BUYER_PRIVATE_KEY | — | Required for paid tools. Funded buyer key. The free predge_list_endpoints tool works without it. |
X402_NETWORK | base | base = mainnet (real USDC). base-sepolia only works against a testnet deployment (see PREDGE_BASE_URL). |
PREDGE_BASE_URL | prod API | https://x402-api-production-266e.up.railway.app. Override to point at another deployment (e.g. a testnet instance). |
MAX_PRICE_USD | 0.05 | Any call priced above this is refused before paying. |
PREDGE_MCP_USER_AGENT | predge-whale-data-mcp/0.1.1 | Sent on every request (lets the API attribute MCP traffic). |
To exercise the payment path without real money, point PREDGE_BASE_URL at a
Base-Sepolia deployment of the API and set X402_NETWORK=base-sepolia; fund the
buyer from faucet.circle.com. (The public prod API
is mainnet-only, so testnet needs your own deployment.)
MAX_PRICE_USD is enforced in the payment selector, so an
over-cap call is refused before any money moves (no wasted request).BUYER_PRIVATE_KEY from env,
never logs it, and never sends it anywhere but the local signer. Use a
dedicated low-balance wallet and keep the key out of version control.git clone https://github.com/predgeAI/whale-data-mcp.git
cd whale-data-mcp && npm install && npm run build
# then point your MCP client's "command" at node with args ["/abs/path/whale-data-mcp/dist/index.js"]
npm run inspect # list tools (no payment)
node dist/dev-list-tools.js predge_list_endpoints # free call against prod
# paid call (spends real USDC on mainnet):
BUYER_PRIVATE_KEY=0x… X402_NETWORK=base node dist/dev-list-tools.js predge_whales_latest '{"limit":2}'
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.