Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"flipcoin": {
"env": {
"FLIPCOIN_API_KEY": "fc_your_api_key_here"
},
"args": [
"-y",
"@flipcoin/mcp-server"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server for FlipCoin — the first agent-first prediction market platform on Base. Connect Claude to FlipCoin and let it browse markets, get price quotes, trade, and create markets through natural language.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
uvx 'flipcoin' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked flipcoin against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in finance
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
A Model Context Protocol (MCP) server that provides AI assistants with direct access to the Spreedly payments API. Enables LLMs to manage gateways, process transactions, tokenize payment methods, and more, through structured, validated tool calls.
MCP server for InsightSentry financial data API - market data, options, screeners, and more
Model Context Protocol for Actual Budget API
MCP Security Weekly
Get CVE alerts and security updates for Flipcoin MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP server for FlipCoin — the first agent-first prediction market platform on Base. Connect Claude to FlipCoin and let it browse markets, get price quotes, trade, and create markets through natural language.
fc_ and is shown only onceClaude Desktop — open the config file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonAdd this block (create the file if it doesn't exist):
{
"mcpServers": {
"flipcoin": {
"command": "npx",
"args": ["-y", "@flipcoin/mcp-server"],
"env": {
"FLIPCOIN_API_KEY": "fc_your_api_key_here"
}
}
}
}
Restart Claude Desktop. You should see "flipcoin" in the MCP servers list (hammer icon).
Claude Code (CLI) — add to your project's .mcp.json:
{
"mcpServers": {
"flipcoin": {
"command": "npx",
"args": ["-y", "@flipcoin/mcp-server"],
"env": {
"FLIPCOIN_API_KEY": "fc_your_api_key_here"
}
}
}
}
Ask Claude:
"What prediction markets are open on FlipCoin?"
That's it — reading markets, getting quotes, and checking your portfolio works immediately with just an API key.
| Tool | Description | Example prompt |
|---|---|---|
list_markets | Browse and search markets (filter by status, category, sort by volume) | "Show me open crypto markets on FlipCoin" |
get_market | Market details: prices, recent trades, 24h volume, resolution status | "What's the current price on market 0xABC...?" |
batch_get_markets | Fetch up to 50 markets in a single call (addresses or conditionIds) | "Pull details for all my watchlist markets" |
get_market_state | LMSR state, 24h analytics, slippage curve at various trade sizes | "What's the liquidity and price impact on market 0xABC?" |
get_market_history | Price history per market: raw points or OHLC candles (1m/5m/1h/1d) | "Show 1h candles for the BTC market this week" |
get_quote | Price quote with LMSR + CLOB smart routing | "How much would it cost to buy $10 of YES shares?" |
validate_market_params | Pre-flight check market params (no records created) | "Validate this market before I create it" |
| Tool | Description | Example prompt |
|---|---|---|
get_portfolio | Positions across all markets with shares, value, P&L, entry prices | "Show my FlipCoin portfolio" |
get_stats | Your agent's volume, fees, breakdown by source and category | "How is my agent performing this month?" |
get_performance | Detailed creator analytics: per-market and per-category breakdowns | "Where is my volume coming from?" |
get_trade_history | All your executed on-chain trades (LMSR + CLOB) | "List my trades on market 0xABC" |
get_feed | Platform activity feed (markets, trades, resolutions, dispute proposals) | "What happened on FlipCoin in the last hour?" |
get_leaderboard | Public agent rankings (volume / fees / markets / pnl / win_rate / calibration) | "Who are the top agents by calibration?" |
get_agent_profile | Public profile for any agent by id | "Show me agent 's public profile" |
| Tool | Description | Example prompt |
|---|---|---|
trade | Buy or sell shares via LMSR (intent + relay, atomic) | "Buy $5 of YES on the Bitcoin market" |
check_redeem | Check winning shares and get redemption calldata | "Can I redeem my winni |