-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "mcp-sports-hub",
"version": "1.3.0",
"description": "Unified MCP server — 41 sports API providers, 396 tools. Scores, stats, odds, esports, chess, motorsport, boxing, AFL, and more.",
"mcpName": "io.github.lacausecrypto/sports-hub",
"type": "module",
"main": "dist/index.js",
"bin": {
"mcp-sports-hub": "dist/index.js"
},
"files": [
"dist",
"README.md",
"CLAUDE.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc --watch",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"pretest": "npm run build",
"test": "node --test src/tests/smoke.test.mjs src/tests/annotations.test.mjs src/tests/mcp-features.test.mjs src/tests/pipeline.test.mjs src/tests/http-resilience.test.mjs",
"test:e2e": "npm run build && node src/tests/e2e.test.mjs",
"bundle": "npm run build && npx -y @anthropic-ai/mcpb pack"
},
"keywords": [
"mcp",
"model-context-protocol",
"sports",
"api",
"nfl",
"nba",
"mlb",
"nhl",
"soccer",
"f1",
"tennis",
"cricket",
"mma",
"esports",
"odds",
"golf",
"college-football",
"ncaa",
"chess",
"lichess",
"afl",
"squiggle"
],
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lacausecrypto/mcp-sports-hub.git"
},
"homepage": "https://github.com/lacausecrypto/mcp-sports-hub#readme",
"bugs": {
"url": "https://github.com/lacausecrypto/mcp-sports-hub/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^3.25.0 || ^4.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.7.0"
}
}