cricketstudio-mcp 1.0.0

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/package.json ADDED
@@ -0,0 +1,54 @@
1
+ {
2
+ "name": "cricketstudio-mcp",
3
+ "version": "1.0.0",
4
+ "description": "CricketStudio MCP server — 29 tools for IPL 2026, IPL historical (18 seasons), and Major League Cricket data. Citation-grade atomic claims with provenance.",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "bin": {
8
+ "cricketstudio-mcp": "dist/index.js"
9
+ },
10
+ "scripts": {
11
+ "build": "esbuild src/index.ts --bundle --platform=node --target=node18 --outfile=dist/index.js --format=esm --packages=external",
12
+ "dev": "tsx src/index.ts",
13
+ "typecheck": "tsc --noEmit",
14
+ "prepare": "npm run build",
15
+ "snapshot": "node scripts/build-snapshot.mjs"
16
+ },
17
+ "keywords": [
18
+ "mcp",
19
+ "cricket",
20
+ "ipl",
21
+ "ipl-2026",
22
+ "ipl-historical",
23
+ "mlc",
24
+ "cricketstudio",
25
+ "claude",
26
+ "model-context-protocol"
27
+ ],
28
+ "author": "Arul Anand / CricketStudio <hello@cricketstudio.ai>",
29
+ "license": "MIT",
30
+ "repository": {
31
+ "type": "git",
32
+ "url": "https://github.com/cricketstudioai/cricketstudio-mcp.git"
33
+ },
34
+ "homepage": "https://players.cricketstudio.ai/mcp",
35
+ "engines": {
36
+ "node": ">=18"
37
+ },
38
+ "peerDependencies": {},
39
+ "dependencies": {
40
+ "@modelcontextprotocol/sdk": "^1.0.0",
41
+ "zod": "^3.0.0"
42
+ },
43
+ "devDependencies": {
44
+ "typescript": "^5.0.0",
45
+ "tsx": "^4.0.0",
46
+ "esbuild": "^0.20.0"
47
+ },
48
+ "files": [
49
+ "dist/",
50
+ "data/snapshot/",
51
+ "README.md",
52
+ "LICENSE"
53
+ ]
54
+ }