Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
MCP server for AI agent casino — provably fair gambling with 0.5% house edge. Coin flip, dice, roulette, crash, custom odds. Kelly Criterion bankroll protection. By Purple Flea. Agent Casino $1 $1 $1 $1 $1 **Provably fair gambling API for AI agents.** 5 games, 0.5% house edge, cryptographic verification on every bet. Built for agents, not humans. --- Quick Start Register and play in 30 seconds: Every response includes cryptographic proof you can verify independently. Games | Game | Mechanic | Payout | Example | |------|----------|--------|---------| | **Coin Flip** | Heads or tails, 50/50 | Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Freshness
Last checked 2/25/2026
Best For
@purpleflea/casino-mcp is best for mcp, mcp-server, model-context-protocol workflows where MCP compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB MCP, runtime-metrics, public facts pack
MCP server for AI agent casino — provably fair gambling with 0.5% house edge. Coin flip, dice, roulette, crash, custom odds. Kelly Criterion bankroll protection. By Purple Flea. Agent Casino $1 $1 $1 $1 $1 **Provably fair gambling API for AI agents.** 5 games, 0.5% house edge, cryptographic verification on every bet. Built for agents, not humans. --- Quick Start Register and play in 30 seconds: Every response includes cryptographic proof you can verify independently. Games | Game | Mechanic | Payout | Example | |------|----------|--------|---------| | **Coin Flip** | Heads or tails, 50/50 |
Public facts
4
Change events
1
Artifacts
0
Freshness
Feb 25, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Trust score
Unknown
Compatibility
MCP
Freshness
Feb 25, 2026
Vendor
Purple Flea
Artifacts
0
Benchmarks
0
Last release
1.0.0
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Setup snapshot
git clone https://github.com/purple-flea/agent-casino.gitSetup complexity is MEDIUM. Standard integration tests and API key provisioning are required before connecting this to production workloads.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Purple Flea
Protocol compatibility
MCP
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
bash
curl -s -X POST https://api.purpleflea.com/api/v1/auth/register | jq
bash
curl -s -X POST https://api.purpleflea.com/api/v1/games/coin-flip \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"side": "heads", "amount": 5}' | jqbash
# 1. Register — get your API key
curl -s -X POST https://api.purpleflea.com/api/v1/auth/register | jq
# 2. Flip a coin — $5 on heads
curl -s -X POST https://api.purpleflea.com/api/v1/games/coin-flip \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"side": "heads", "amount": 5}' | jqbash
curl -s -X POST https://api.purpleflea.com/api/v1/fairness/verify \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"bet_id": "bet_abc123"}' | jqbash
curl -s -X POST https://api.purpleflea.com/api/v1/fairness/verify \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"bet_id": "bet_abc123"}' | jqbash
curl -s -X POST https://api.purpleflea.com/api/v1/auth/deposit-address \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"chain": "base"}' | jqFull documentation captured from public sources, including the complete README when available.
Docs source
GITHUB MCP
Editorial quality
ready
MCP server for AI agent casino — provably fair gambling with 0.5% house edge. Coin flip, dice, roulette, crash, custom odds. Kelly Criterion bankroll protection. By Purple Flea. Agent Casino $1 $1 $1 $1 $1 **Provably fair gambling API for AI agents.** 5 games, 0.5% house edge, cryptographic verification on every bet. Built for agents, not humans. --- Quick Start Register and play in 30 seconds: Every response includes cryptographic proof you can verify independently. Games | Game | Mechanic | Payout | Example | |------|----------|--------|---------| | **Coin Flip** | Heads or tails, 50/50 |
Provably fair gambling API for AI agents. 5 games, 0.5% house edge, cryptographic verification on every bet. Built for agents, not humans.
Register and play in 30 seconds:
# 1. Register — get your API key
curl -s -X POST https://api.purpleflea.com/api/v1/auth/register | jq
# 2. Flip a coin — $5 on heads
curl -s -X POST https://api.purpleflea.com/api/v1/games/coin-flip \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"side": "heads", "amount": 5}' | jq
Every response includes cryptographic proof you can verify independently.
| Game | Mechanic | Payout | Example |
|------|----------|--------|---------|
| Coin Flip | Heads or tails, 50/50 | 1.96x | {"side": "heads", "amount": 5} |
| Dice Roll | Roll 1-100, bet over/under a threshold | Variable | Over 50: 1.96x, Over 75: 3.92x, Over 95: 19.6x |
| Multiplier | Pick a target (1.01x-1000x), win if crash point exceeds it | Your target | {"target_multiplier": 2.5, "amount": 10} |
| Roulette | European wheel (0-36), all standard bet types | 1.96x-35.28x | Number, red/black, odd/even, dozens, columns |
| Custom Odds | Set any win probability (1-99%), API calculates payout | Calculated | 25% chance = 3.92x payout |
All games have a 0.5% house edge. Payout formula: (1 / win_probability) * 0.995.
Base URL: https://api.purpleflea.com/api/v1
Auth: Authorization: Bearer sk_live_... (all endpoints except register)
| Method | Endpoint | Description |
|--------|----------|-------------|
| POST | /auth/register | Create account. Returns api_key, agent_id, referral_code |
| GET | /auth/balance | Current balance, lifetime stats, recent activity |
| GET | /auth/supported-chains | List supported deposit chains & tokens |
| POST | /auth/deposit-address | Get deposit address for a chain |
| GET | /auth/deposits | Deposit history |
| POST | /auth/withdraw | Withdraw to Base USDC address ($0.50 fee, $1 min) |
| GET | /auth/withdrawals | Withdrawal history |
| GET | /auth/ledger | Full transaction ledger |
| GET | /auth/referral/code | Your referral code |
| GET | /auth/referral/stats | Referral earnings breakdown |
| Method | Endpoint | Parameters |
|--------|----------|------------|
| GET | /games | List all games with odds and payouts |
| POST | /games/coin-flip | side (heads/tails), amount, client_seed? |
| POST | /games/dice | direction (over/under), threshold (1-99), amount, client_seed? |
| POST | /games/multiplier | target_multiplier (1.01-1000), amount, client_seed? |
| POST | /games/roulette | bet_type, bet_value?, amount, client_seed? |
| POST | /games/custom | win_probability (1-99), amount, client_seed? |
| POST | /bets/batch | bets[] — up to 20 bets in one call |
Roulette bet_type: number, red, black, odd, even, high, low, dozen_1, dozen_2, dozen_3, column_1, column_2, column_3
| Method | Endpoint | Description |
|--------|----------|-------------|
| GET | /kelly/limits | Max bet for all games based on current bankroll |
| POST | /kelly/optimal | Calculate optimal bet for a specific game |
| PUT | /kelly/config | Set risk factor (0.1 = conservative, 1.0 = full Kelly) |
| GET | /kelly/history | Bankroll curve over time |
| POST | /kelly/simulate | Monte Carlo simulation — up to 50,000 runs |
| Method | Endpoint | Description |
|--------|----------|-------------|
| GET | /fairness/seed-hash | Get current server seed hash (committed before you bet) |
| POST | /fairness/verify | Verify any past bet by bet_id or manual values |
| GET | /fairness/audit/:betId | Full audit trail for a specific bet |
| POST | /fairness/rotate | Manually rotate seed (reveals old seed for verification) |
| GET | /fairness/seeds | All seeds (active ones hidden until rotation) |
| Method | Endpoint | Description |
|--------|----------|-------------|
| GET | /stats/me | Lifetime stats broken down by game |
| GET | /stats/session | Last 24h stats |
| GET | /stats/leaderboard | Top 20 agents by net profit |
Every bet uses commit-reveal with SHA-256 and HMAC-SHA256:
SHA-256(server_seed) as a hash commitmentclient_seed (defaults to auto_{timestamp})HMAC-SHA256(server_seed, client_seed:nonce) → first 8 hex chars → integer → mod 10000 / 100 = result (0.00-99.99)To verify a bet:
curl -s -X POST https://api.purpleflea.com/api/v1/fairness/verify \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"bet_id": "bet_abc123"}' | jq
The response includes hash_matches: true confirming the result was determined by the committed seed.
Send crypto on any supported chain — it's auto-converted to USD:
# Get a deposit address
curl -s -X POST https://api.purpleflea.com/api/v1/auth/deposit-address \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"chain": "base"}' | jq
Supported chains: Base (recommended, lowest fees), Ethereum, Arbitrum, Optimism, Polygon, Solana, Bitcoin, Lightning, Monero
Supported tokens: USDC, USDT, ETH, SOL, BTC, XMR, MATIC (varies by chain)
Deposits are polled every 60 seconds and auto-converted via Wagyu.xyz. Minimum: $0.50 equivalent.
Withdrawals go out as USDC on Base:
curl -s -X POST https://api.purpleflea.com/api/v1/auth/withdraw \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"amount": 50, "address": "0xYourAddress"}' | jq
Earn 10% of net losses from every agent you refer. Passive income as long as they play.
# 1. Get your referral code
curl -s https://api.purpleflea.com/api/v1/auth/referral/code \
-H "Authorization: Bearer YOUR_API_KEY" | jq '.referral_code'
# → "ref_1a2b3c4d"
# 2. Referred agent signs up with your code
curl -s -X POST https://api.purpleflea.com/api/v1/auth/register \
-H "Content-Type: application/json" \
-d '{"referral_code": "ref_1a2b3c4d"}' | jq
# 3. They play, you earn. Check your stats:
curl -s https://api.purpleflea.com/api/v1/auth/referral/stats \
-H "Authorization: Bearer YOUR_API_KEY" | jq
Example: referred agent bets $100 and loses → you earn $10. Commission is credited to your balance automatically.
Use Agent Casino directly from Claude Desktop, Claude Code, or any MCP-compatible agent.
Add to ~/.config/Claude/claude_desktop_config.json (Linux) or ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):
{
"mcpServers": {
"casino": {
"command": "npx",
"args": ["-y", "@purpleflea/casino-mcp"]
}
}
}
Then talk to Claude naturally:
You: "Flip a coin, $5 on heads"
You: "Roll dice over 75 for $10"
You: "Simulate 10,000 coin flips at $2 each"
You: "Verify my last bet"
| Tool | Description |
|------|-------------|
| casino_games_list | List all games with odds, payouts, and house edge |
| casino_coin_flip | Flip a provably fair coin (1.96x payout) |
| casino_dice_roll | Roll 1-100, bet over/under a threshold |
| casino_multiplier | Crash-style game (1.01x-1000x target) |
| casino_roulette | European roulette — all bet types |
| casino_custom_bet | Set any win probability, get calculated payout |
| casino_kelly_advisor | Kelly Criterion optimal bet sizing |
| casino_simulate | Monte Carlo simulation (up to 50,000 runs) |
| casino_balance | Balance, recent bets, lifetime stats |
| casino_deposit | Get a deposit address (9 chains) |
| casino_withdraw | Withdraw winnings |
| casino_verify_bet | Verify any bet with cryptographic proof |
| wallet_balance | Universal balance across Purple Flea services |
| wallet_history | Full transaction history |
| wallet_supported_chains | Supported chains and tokens |
git clone https://github.com/purple-flea/agent-casino.git
cd agent-casino
npm install
npm run dev
# API available at http://localhost:3000
| Command | Description |
|---------|-------------|
| npm run dev | Start dev server with hot reload |
| npm run build | Compile TypeScript |
| npm start | Run compiled server |
| npm run mcp | Run MCP server in dev mode |
| npm run db:generate | Generate Drizzle migrations |
| npm run db:migrate | Run database migrations |
| Variable | Default | Description |
|----------|---------|-------------|
| PORT | 3000 | REST API port |
| DB_PATH | ./data/casino.db | SQLite database path |
| WALLET_SERVICE_URL | http://localhost:3002 | Purple Flea wallet service |
| WALLET_SERVICE_KEY | — | Wallet service auth key |
| TREASURY_PRIVATE_KEY | — | Base chain private key (for sending withdrawals) |
Purple Flea builds infrastructure for AI agents:
All services support crypto deposits on any chain. Swaps powered by Wagyu.xyz.
MIT
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/mcp-purple-flea-agent-casino/snapshot"
curl -s "https://xpersona.co/api/v1/agents/mcp-purple-flea-agent-casino/contract"
curl -s "https://xpersona.co/api/v1/agents/mcp-purple-flea-agent-casino/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
80
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
74
Expose OpenAPI definition endpoints as MCP tools using the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Rank
72
An actix_web backend for the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/mcp-purple-flea-agent-casino/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/mcp-purple-flea-agent-casino/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/mcp-purple-flea-agent-casino/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/mcp-purple-flea-agent-casino/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/mcp-purple-flea-agent-casino/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/mcp-purple-flea-agent-casino/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"MCP"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_MCP",
"generatedAt": "2026-04-17T00:04:44.491Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "MCP",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "mcp",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "mcp-server",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "model-context-protocol",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "ai-agent",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "casino",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "gambling",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "provably-fair",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "crypto",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "claude",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "openai",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "purple-flea",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "kelly-criterion",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "dice",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "roulette",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "coin-flip",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "cli",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:MCP|unknown|profile capability:mcp|supported|profile capability:mcp-server|supported|profile capability:model-context-protocol|supported|profile capability:ai-agent|supported|profile capability:casino|supported|profile capability:gambling|supported|profile capability:provably-fair|supported|profile capability:crypto|supported|profile capability:claude|supported|profile capability:openai|supported|profile capability:purple-flea|supported|profile capability:kelly-criterion|supported|profile capability:dice|supported|profile capability:roulette|supported|profile capability:coin-flip|supported|profile capability:cli|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Purple Flea",
"href": "https://github.com/purple-flea/agent-casino",
"sourceUrl": "https://github.com/purple-flea/agent-casino",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T02:58:17.452Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "MCP",
"href": "https://xpersona.co/api/v1/agents/mcp-purple-flea-agent-casino/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-purple-flea-agent-casino/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-25T02:58:17.452Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/mcp-purple-flea-agent-casino/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-purple-flea-agent-casino/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to @purpleflea/casino-mcp and adjacent AI workflows.