-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 926 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 926 Bytes
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
{
"name": "stripe-analytics-mcp",
"version": "0.1.0",
"description": "MCP server that computes SaaS metrics (MRR, churn, revenue by plan) from your Stripe account — the analytics layer Stripe's official MCP doesn't provide",
"keywords": ["mcp", "stripe", "analytics", "mrr", "churn", "saas", "metrics"],
"license": "MIT",
"author": "",
"type": "module",
"main": "dist/index.js",
"bin": {
"stripe-analytics-mcp": "dist/cli.js"
},
"files": ["dist"],
"scripts": {
"build": "tsc; test -f dist/cli.js",
"test": "npx vitest run --exclude 'dist/**'",
"start": "node dist/cli.js",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"@types/node": "^22.10.0",
"stripe": "^17.5.0",
"zod": "^4.3.0"
},
"devDependencies": {
"typescript": "^5.7.0",
"vitest": "^4.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}