odds-api-mcp-server 1.2.0 → 1.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.mcpbignore ADDED
@@ -0,0 +1,64 @@
1
+ # Source files (dist/ has the compiled output)
2
+ src/
3
+ tsconfig.json
4
+ *.ts
5
+ !dist/**
6
+
7
+ # Dev dependencies & test files
8
+ node_modules/vitest/
9
+ node_modules/@vitest/
10
+ node_modules/typescript/
11
+ node_modules/ts-node/
12
+ node_modules/vite/
13
+ node_modules/rolldown/
14
+ node_modules/@rolldown/
15
+ node_modules/lightningcss/
16
+ node_modules/lightningcss-*/
17
+ node_modules/fsevents/
18
+ node_modules/chai/
19
+ node_modules/tinybench/
20
+ node_modules/tinyexec/
21
+ node_modules/tinyrainbow/
22
+ node_modules/tinyglobby/
23
+ node_modules/picomatch/
24
+ node_modules/picocolors/
25
+ node_modules/postcss/
26
+ node_modules/source-map-js/
27
+ node_modules/magic-string/
28
+ node_modules/expect-type/
29
+ node_modules/stackback/
30
+ node_modules/siginfo/
31
+ node_modules/why-is-node-running/
32
+ node_modules/diff/
33
+ node_modules/fdir/
34
+ node_modules/assertion-error/
35
+ node_modules/@tsconfig/
36
+ node_modules/@types/chai/
37
+ node_modules/@types/deep-eql/
38
+ node_modules/@types/estree/
39
+ node_modules/@cspotcode/
40
+ node_modules/@jridgewell/
41
+ node_modules/@oxc-project/
42
+ node_modules/@standard-schema/
43
+ node_modules/v8-compile-cache-lib/
44
+ node_modules/create-require/
45
+ node_modules/make-error/
46
+ node_modules/yn/
47
+ node_modules/acorn/
48
+ node_modules/acorn-walk/
49
+ node_modules/arg/
50
+ node_modules/convert-source-map/
51
+ node_modules/es-module-lexer/
52
+ node_modules/estree-walker/
53
+ node_modules/nanoid/
54
+ node_modules/obug/
55
+ node_modules/pathe/
56
+ node_modules/std-env/
57
+ node_modules/detect-libc/
58
+
59
+ # Git, lockfiles, misc
60
+ .git/
61
+ .gitignore
62
+ package-lock.json
63
+ node_modules/.package-lock.json
64
+ *.mcpb
package/README.md CHANGED
@@ -4,12 +4,16 @@ Model Context Protocol (MCP) server for [Odds-API.io](https://odds-api.io) - pro
4
4
 
5
5
  ## Features
6
6
 
7
- - **21 API tools** covering the full Odds-API.io v3 surface: sports, events, odds, historical data, value bets, arbitrage, and more
7
+ - **22 API tools** covering the full Odds-API.io v3 surface: sports, events, odds, historical data, value bets, arbitrage, dropping odds, and more
8
8
  - **Documentation resources** for AI context
9
9
  - **Real-time data** from 265+ bookmakers across 34 sports
10
10
 
11
11
  ## Quick Start
12
12
 
13
+ ### One-Click Install (Claude Desktop)
14
+
15
+ Download the latest `.mcpb` file from [Releases](https://github.com/odds-api-io/odds-api-mcp-server/releases/latest) and open it. Claude Desktop will prompt you for your API key.
16
+
13
17
  ### Claude Code CLI
14
18
 
15
19
  ```bash
@@ -133,6 +137,7 @@ Then use `odds-api-mcp` as the command instead of `npx -y odds-api-mcp-server`.
133
137
  |------|-------------|
134
138
  | `get_value_bets` | Get positive EV opportunities for a bookmaker |
135
139
  | `get_arbitrage_bets` | Get arbitrage opportunities with optimal stakes |
140
+ | `get_dropping_odds` | Track sharp bookmaker line movements by sport, league, market, and time window |
136
141
 
137
142
  ### Participants
138
143
 
@@ -160,11 +165,13 @@ Once configured, ask your AI assistant things like:
160
165
 
161
166
  - "What sports are available on Odds-API?"
162
167
  - "Show me upcoming Premier League matches"
163
- - "Get odds for the next Arsenal match from Bet365 and Pinnacle"
168
+ - "Get odds for the next Arsenal match from Bet365 and SingBet"
164
169
  - "Find value bets on Bet365 with event details"
165
170
  - "Are there any arbitrage opportunities between Bet365 and Unibet?"
166
171
  - "Show me how the odds moved for event 12345 on the spread market"
167
172
  - "Get historical results for La Liga in January 2026"
173
+ - "Show me the biggest dropping odds in football right now"
174
+ - "What Premier League odds have dropped the most in the last 12 hours?"
168
175
 
169
176
  ## Development
170
177
 
package/manifest.json ADDED
@@ -0,0 +1,68 @@
1
+ {
2
+ "manifest_version": "0.3",
3
+ "name": "odds-api",
4
+ "display_name": "Odds-API.io",
5
+ "version": "1.2.2",
6
+ "description": "Real-time sports betting odds from 250+ bookmakers. Fetch odds, find value bets, spot arbitrage opportunities, and track dropping odds across 20+ sports.",
7
+ "long_description": "Connect Claude to the Odds-API.io platform for real-time sports betting data.\n\nFetch live and pre-match odds from 250+ bookmakers across football, basketball, tennis, baseball, ice hockey, and 15+ more sports. Compare odds, find value bets backed by sharp bookmaker consensus, discover arbitrage opportunities, and track dropping odds to see where the smart money is moving.\n\nIncludes tools for events, odds, historical data, value bets, arbitrage detection, and dropping odds.\n\nRequires an API key from odds-api.io (free tier available).",
8
+ "author": {
9
+ "name": "Odds-API.io",
10
+ "email": "hello@odds-api.io",
11
+ "url": "https://odds-api.io"
12
+ },
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "https://github.com/odds-api-io/odds-api-mcp-server.git"
16
+ },
17
+ "homepage": "https://odds-api.io",
18
+ "documentation": "https://docs.odds-api.io",
19
+ "support": "https://github.com/odds-api-io/odds-api-mcp-server/issues",
20
+ "license": "MIT",
21
+ "keywords": ["sports", "betting", "odds", "football", "basketball", "arbitrage", "value-bets", "bookmakers"],
22
+ "server": {
23
+ "type": "node",
24
+ "entry_point": "dist/index.js",
25
+ "mcp_config": {
26
+ "command": "node",
27
+ "args": ["${__dirname}/dist/index.js"],
28
+ "env": {
29
+ "ODDS_API_KEY": "${user_config.api_key}"
30
+ }
31
+ }
32
+ },
33
+ "tools": [
34
+ { "name": "get_sports", "description": "List all available sports" },
35
+ { "name": "get_bookmakers", "description": "List all active bookmakers" },
36
+ { "name": "get_leagues", "description": "Get leagues for a sport" },
37
+ { "name": "get_events", "description": "Get upcoming events with filters" },
38
+ { "name": "get_live_events", "description": "Get currently live events with scores" },
39
+ { "name": "search_events", "description": "Search events by team name" },
40
+ { "name": "get_odds", "description": "Get odds for an event from selected bookmakers" },
41
+ { "name": "get_multi_odds", "description": "Get odds for multiple events in one call" },
42
+ { "name": "get_odds_movements", "description": "Get historical odds movements for an event" },
43
+ { "name": "get_updated_odds", "description": "Get recently updated odds across all events" },
44
+ { "name": "get_dropping_odds", "description": "Find odds that have dropped significantly from sharp bookmakers" },
45
+ { "name": "get_historical_events", "description": "Get past events for a sport and league" },
46
+ { "name": "get_historical_odds", "description": "Get closing odds for a finished event" },
47
+ { "name": "get_value_bets", "description": "Find value bets based on sharp bookmaker consensus" },
48
+ { "name": "get_arbitrage_bets", "description": "Find arbitrage opportunities across bookmakers" },
49
+ { "name": "get_selected_bookmakers", "description": "View your currently selected bookmakers" },
50
+ { "name": "select_bookmakers", "description": "Set your active bookmaker selection" },
51
+ { "name": "clear_selected_bookmakers", "description": "Reset bookmaker selection to default" }
52
+ ],
53
+ "user_config": {
54
+ "api_key": {
55
+ "type": "string",
56
+ "title": "API Key",
57
+ "description": "Your Odds-API.io API key. Get one free at odds-api.io",
58
+ "sensitive": true,
59
+ "required": true
60
+ }
61
+ },
62
+ "compatibility": {
63
+ "platforms": ["darwin", "win32", "linux"],
64
+ "runtimes": {
65
+ "node": ">=18.0.0"
66
+ }
67
+ }
68
+ }
package/odds-api.mcpb ADDED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "odds-api-mcp-server",
3
- "version": "1.2.0",
3
+ "version": "1.2.2",
4
4
  "description": "MCP server for Odds-API.io - Access sports betting odds data from AI tools like Claude, Cursor, and VS Code",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",