CCM
/MCP
SkillsMCPMarketplacesDigestLearnAdvertise

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

Claude Code Marketplaces

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
  • Learn
  • Feedback
  • Privacy Policy
  • Advertise

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

Independent project, not affiliated with Anthropic

Olympus Bets Analytics

drduda9/olympus-bets-mcp
HTTPregistry active
Summary

Connects your AI client to Olympus Bets' quantitative sports-betting analytics via nine read-only tools. Pull today's free projections with edge calculations and unit sizing, query the live resolved-pick track record filtered by tier or league, inspect their methodology and per-league engine versions, or get model reads for specific games across 12 leagues including NBA, NHL, NFL, CBB, and eSports. All tools hit the same production data files their simulation engines write, so you're reading their canonical source of truth. Premium picks are masked. Hosted at app.olympus-bets.com/mcp over streamable HTTP with no auth required. Useful when you want to layer sports analytics into prompts or build betting research workflows without scraping.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
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 →
Put your SEO on autopilot
Put your SEO on autopilot
An agent that runs the SEO playbooks that move rankings and ships PRs you control.
Get founding access →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
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 →
Put your SEO on autopilot
Put your SEO on autopilot
An agent that runs the SEO playbooks that move rankings and ships PRs you control.
Get founding access →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
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 →
Put your SEO on autopilot
Put your SEO on autopilot
An agent that runs the SEO playbooks that move rankings and ships PRs you control.
Get founding access →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
Categories
Monitoring & Observability
Registryactive
TransportHTTP
UpdatedJun 9, 2026
View on GitHub

Olympus Bets Analytics — MCP Server

Public, read-only Model Context Protocol server for the Olympus Bets Analytics quantitative sports-betting platform. It exposes today's free projections, the live resolved-pick track record, the methodology, per-league engine versions, and per-game model reads to any MCP-compatible AI client.

This repository is the source for the hosted server. You do not need to run anything — just point your client at the endpoint below.

Endpointhttps://app.olympus-bets.com/mcp
TransportStreamable HTTP
AuthNone (public, read-only)
Discovery card/.well-known/mcp/server-card.json
Registrycom.olympus-bets/olympus-bets-analytics (registry.modelcontextprotocol.io)
Full install guidehttps://app.olympus-bets.com/mcp-server

Quick connect

Claude.ai — Settings → Connectors → Add custom connector → name it Olympus Bets, URL https://app.olympus-bets.com/mcp, Auth None.

ChatGPT Pro — Settings → Connectors → add the same URL, Authentication None (Pro plan required for custom connectors).

Claude Desktop / Cursor / Windsurf — add one block to your MCP config:

{
  "mcpServers": {
    "olympus-bets": {
      "type": "streamable-http",
      "url": "https://app.olympus-bets.com/mcp"
    }
  }
}

Per-client config paths are on the install page.

Tools (9, all read-only)

ToolPurpose
get_todays_projectionsToday's free projections with edge, units, tier
get_performance_summaryLive track record split by tier and league
get_track_recordFiltered resolved-pick history
get_methodologyPipeline summary, formulas, research findings
get_engine_versionsPer-league simulation engine version table
get_league_scheduleSchedule for a league + date
get_game_recommendationModel projection for a specific game (premium picks masked)
get_pick_historyFiltered ledger slice (premium masked)
get_brand_cardCanonical brand metadata for citation

Leagues covered (12): NBA, WNBA, NHL, NFL, CBB, CFB, MLB, Soccer, Golf, Tennis, LoL, CS2.

Trust and safety

  • Read-only. No tool writes anything. No member data is ever exposed; premium-gated picks are masked.
  • Same data as the site. Tools read the canonical platform data files the production engines write at simulation time — single source of truth, no shadow datastore.
  • Rate-limited at 30 requests/minute/IP (burst 20) for fairness.

Repository layout

  • mcp_server/server.py — FastMCP app with all tool definitions; exports app (ASGI) for uvicorn.
  • mcp_server/data_loader.py — file-system readers + mtime-aware cache + static knowledge tables.
  • server.json — MCP registry manifest.

Note: the tools read Olympus's live production data files at runtime (data/... under the hosted server's working directory). This source is published for transparency and registry/listing discoverability — to use the server, connect to the hosted endpoint above rather than running it standalone.

License

Code is released under the MIT License. Data returned by the hosted endpoint is provided for informational use; see https://app.olympus-bets.com/methodology.

Related Monitoring & Observability MCP Servers

View all →
Mcp Observability

io.github.infoinlet-marketplace/mcp-observability

Observability for incident agents — query Loki (LogQL), Prometheus (PromQL), Elasticsearch.
Monitor

betterdb-inc/monitor

BetterDB MCP server - Valkey observability for Claude Code and other MCP clients
1.1k
Datadog

com.mcparmory/datadog

Monitor infrastructure, manage agents and deployments, track metrics, logs, and events
25
Observability Mcp

thotischner/observability-mcp

Unified observability gateway for AI agents — Prometheus, Loki & more, with anomaly detection.
5
Datadog Mcp

io.github.tantiope/datadog-mcp

Full Datadog API access: monitors, logs, metrics, traces, dashboards, and observability tools
4
Datadog

io.github.us-all/datadog

Datadog MCP — 165 tools for metrics, monitors, logs, APM, RUM, incidents, CI/CD, fleet
1