CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Sports Betting Mcp

seang1121/sports-betting-mcp
1STDIOregistry active
Summary

Connects Claude to a live sports betting analysis API covering NBA, NHL, NCAAB, and MLB. You get 12 MCP tools for pulling AI picks with confidence scores, querying live odds and line movement, checking win rates by sport and bet type, and running on-demand game analysis through a 12-agent consensus model. Every pick is logged before tip-off and resolved against final scores, with 1,353+ resolved picks at 59.6% overall. The API has free and pro tiers authenticated via X-API-Key header. Reach for this when you want Claude to surface betting recommendations, explain edge breakdowns, track performance across bet types, or reason over injury reports and sharp money signals without leaving the conversation.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

sports-betting-mcp

The first MCP server for sports betting. Give any AI agent live access to picks, odds, game analysis, and performance tracking across NBA, NHL, NCAAB, and MLB.

Status Python PyPI License MCP Sports

mcp-name: io.github.seang1121/sports-betting-mcp

What It Does

Connects any MCP-compatible AI agent to a live sports betting analysis system. Every pick is logged before tip-off and resolved against final scores. Nothing is cherry-picked.

MetricValue
Sports CoveredNBA, NHL, NCAAB, MLB
Bet TypesMoneyline, Spread, Totals
Pick Source12-agent consensus model
Total Picks3,859+ resolved
Platform Users30
Tools12 MCP tools
AuthAPI key (X-API-Key header)

Results by Sport

SportPicksWinsWin Rate
NBA1,26776260.1%
NHL1,14865657.1%
NCAAB1,14954947.8%
MLB28310938.5% (launched Apr 2026)

All results are queryable in real-time via the get_win_rate tool. Numbers update after every game.


Quick Start

Install

pip install sports-betting-mcp

Add to Your MCP Client

Drop this into your MCP config (Claude Desktop, Cursor, Windsurf, Claude Code, etc.):

{
  "mcpServers": {
    "sports-betting": {
      "command": "sports-betting-mcp",
      "env": {
        "SPORTS_BETTING_API_URL": "https://sportsbettingaianalyzer.com",
        "SPORTS_BETTING_API_KEY": "your_api_key"
      }
    }
  }
}

Environment Variables

VariableRequiredDescription
SPORTS_BETTING_API_KEYYesYour API key for authentication
SPORTS_BETTING_API_URLNoAPI base URL (defaults to http://localhost:5000)

Works With

Any client that supports the Model Context Protocol:

ClientStatus
Claude DesktopFully supported
CursorFully supported
WindsurfFully supported
Claude Code (CLI)Fully supported
Any MCP ClientFully supported via stdio transport

Available Tools

12 tools. Every call returns structured data that AI agents can reason over, display, or act on.

Picks & Analysis

ToolWhat It Does
get_todays_picksAll AI picks with confidence scores and edge breakdowns, filterable by sport
get_top_pickSingle highest-confidence pick of the day
get_pending_picksCurrently unresolved picks that are still in play
get_completed_picksRecently resolved picks with W/L results -- verify the track record
analyze_gameFull 12-agent analysis on any game: consensus pick + edge breakdown

Odds & Market Data

ToolWhat It Does
get_live_oddsLive moneyline, spread, and totals for today's games
get_alertsActive alerts from the multi-agent system (line moves, injury impacts)

Performance & Stats

ToolWhat It Does
get_win_rateWin rate with breakdown by sport and bet type
get_model_statsModel performance: total picks, last-20 win rate, confidence tier breakdown
get_leaderboardUser rankings by win rate
get_system_statusHealth check -- uptime, database, scheduler status

How the Analysis Works

Each game runs through a multi-agent pipeline:

  1. 12 specialized agents evaluate the game independently -- covering momentum, matchups, injuries, rest, travel, public betting percentages, sharp money indicators, historical trends, and more.
  2. A consensus engine synthesizes all 12 opinions into a single pick with a confidence score.
  3. Edge calculation compares the model's implied probability against the current market line.
  4. Picks are logged before tip-off and resolved against final scores. No retroactive edits.

The confidence score and edge breakdown are included in every pick response, so your AI agent can filter, rank, or explain the reasoning behind any recommendation.


Full API — 22 Endpoints

The API has two tiers: Free (any API key) and Pro (approved access).

Free Tier (available to all API key holders)

EndpointMethodWhat It Does
/xk/pGETToday's AI picks with confidence scores
/xk/o/{sport}GETLive odds from FanDuel/BetMGM
/xk/wGETWin rate breakdown by sport and bet type
/xk/iGETActive injury report from Covers.com
/xk/mGETSignificant line movement (sharp money signals)
/xk/gamesGETToday's full schedule with odds snapshot and AI pick flags
/xk/statsGETModel performance by sport, bet type, confidence tier
/xk/lbGETLeaderboard — AI vs human win rates
/xk/newsGETSports news feed from RSS sources
/xk/qGETCurrently pending (unresolved) picks

Pro Tier (requires approved access)

EndpointMethodWhat It Does
/xk/fullGETFull structured picks — complete edge breakdowns, positive/negative edges, reasoning, scorecard, opposing side with odds, line movement, quality flags
/xk/analyzePOSTOn-demand 12-agent analysis for any game — send team names, get full consensus
/xk/resultsGETResolved picks with W/L, actual scores, profit, top contributing edges
/xk/clvGETClosing Line Value analysis — did the line move in our favor?
/xk/searchGETSearch all picks by team name with W/L record
/xk/logPOSTLog a pick (supports flip flag, pick source tracking)
/xk/log/batchPOSTBatch log up to 20 picks with per-pick success/duplicate/error status
/xk/historyGETYour pick history — pending, resolved, win rate
/xk/slipPOSTGenerate Nimrod bet slip image
/xk/webhookPOST/GET/DELETERegister webhooks for pick events
/xk/fullGETIncludes fade/flip data for every pick — opposing side, line, odds

Pro Pick Payload

Every pick from /xk/full includes:

{
  "ai_pick": "Lakers -5.5",
  "ai_verdict": "STRONG BET",
  "ai_probability": "65%",
  "ai_reasoning": "Lakers defense ranks top 5, opponent on B2B...",
  "edges": [13 individual edge factors],
  "top_edges": [top 5 positive],
  "negative_edges": [top 3 negative],
  "scorecard": [3 model scores],
  "fade_pick": "Celtics +5.5",
  "fade_team": "Celtics",
  "fade_odds": "+105",
  "fade_note": "Betting AGAINST the AI — take Celtics +5.5",
  "line_moved": true,
  "flags": ["line_moved"],
  "data_quality": "good"
}

Pick Source Tracking (for learning)

When logging picks, include pick_source to track decision types:

  • model_agree — following the AI's pick
  • flip — fading/betting against the AI
  • manual_override — custom pick

This enables win rate comparison between model-agree vs flip picks over time.


API Authentication

Authenticate with X-API-Key header. Get a free key at sportsbettingaianalyzer.com. Pro access requires admin approval.


Tech Stack

ComponentTechnology
RuntimePython 3.10+
ProtocolMCP (Model Context Protocol)
Transportstdio
BuildHatchling
DistributionPyPI (sports-betting-mcp)
BackendFlask + SQLite
Analysis12-agent consensus pipeline
SportsNBA, NHL, NCAAB, MLB

Related Projects

  • Mortgage Rates MCP Server -- 17 lenders, 13 tools, real-time mortgage rate intelligence
  • March Madness Bracket Predictor -- 5-model ensemble, 14-year backtest, 77% accuracy, correctly predicted 2026 champion
  • Agent Command Center -- Dashboard that auto-discovers MCP servers, agents, hooks, cron jobs, and repos

License

MIT

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Configuration

SPORTS_BETTING_API_URL

URL of the Sports Betting Analyzer API (default: http://localhost:5000)

SPORTS_BETTING_API_KEY

Your API key from sportsbettingaianalyzer.com/account/api-keys

Categories
Communication & Messaging
Registryactive
Packagesports-betting-mcp
TransportSTDIO
UpdatedMar 14, 2026
View on GitHub

Related Communication & Messaging MCP Servers

View all →
Microsoft 365 Teams

io.github.mindstone/mcp-server-microsoft-teams

Microsoft 365 Teams via Graph: list chats, read/send messages, list teams/channels, presence.
8
Outlook Email

com.mintmcp/outlook-email

A MCP server for Outlook email that lets you search, read, and draft emails and replies.
8
Resend Email MCP

helbertparanhos/resend-email-mcp

Complete Resend email MCP: full API coverage + debug layer (deliverability, DNS, bounces).
Email Mcp

marlinjai/email-mcp

Unified email MCP server for Gmail, Outlook, iCloud, and IMAP with batch operations
13
Email (IMAP/SMTP)

io.github.mindstone/mcp-server-email-imap

Email IMAP/SMTP MCP server: iCloud, Gmail, Yahoo, Outlook, and custom IMAP providers
8
HTML Email Playbook

io.github.osamahassouna/email-playbook-mcp

Teaches AI to write HTML email that renders in Outlook, Gmail, and Apple Mail. 19 rules, 6 comps.