31 lines
693 B
JSON

{
"name": "closebot-mcp",
"version": "1.0.0",
"description": "MCP server for CloseBot AI chatbot platform API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"closebot-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build"
},
"keywords": ["mcp", "closebot", "ai", "chatbot"],
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1"
},
"devDependencies": {
"@types/node": "^22.15.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=18.0.0"
}
}