27 lines
661 B
JSON
27 lines
661 B
JSON
{
|
|
"name": "changemaker-mcp-server",
|
|
"version": "1.0.0",
|
|
"description": "MCP server for Changemaker Lite — exposes platform tools to Claude",
|
|
"type": "module",
|
|
"main": "src/index.ts",
|
|
"bin": {
|
|
"changemaker-mcp": "src/index.ts"
|
|
},
|
|
"scripts": {
|
|
"start": "tsx src/index.ts",
|
|
"start:http": "tsx src/index.ts --transport http --port 4200",
|
|
"dev": "tsx watch src/index.ts",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.12.3",
|
|
"axios": "^1.7.0",
|
|
"zod": "^3.24.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.19.11",
|
|
"tsx": "^4.19.2",
|
|
"typescript": "^5.7.3"
|
|
}
|
|
}
|