package.json•1.17 kB
{
"name": "stripe-mcp",
"version": "1.0.0",
"description": "Stripe Model Context Protocol server for fraud operations and full API coverage",
"type": "module",
"module": "./src/index.ts",
"bin": {
"stripe-mcp": "./.smithery/stdio/index.cjs"
},
"files": [
".smithery"
],
"scripts": {
"build": "npm run build:all",
"build:stdio": "smithery build src/index.ts --transport stdio -o .smithery/stdio/index.cjs && echo '#!/usr/bin/env node' | cat - .smithery/stdio/index.cjs > temp && mv temp .smithery/stdio/index.cjs && chmod +x .smithery/stdio/index.cjs",
"build:shttp": "smithery build src/index.ts --transport shttp -o .smithery/shttp/index.cjs",
"build:all": "npm run build:stdio && npm run build:shttp",
"prepare": "npm run build:all",
"dev": "smithery dev",
"typecheck": "tsc --noEmit"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.1",
"@smithery/sdk": "^1.6.4",
"stripe": "^19.1.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@smithery/cli": "^1.4.1",
"@types/node": "^24.9.1",
"typescript": "^5.9.3"
}
}