package.json•978 B
{
"name": "customer-registration-server",
"version": "1.0.0",
"description": "MCP server for customer registration via external API",
"main": "build/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"render-build": "yarn install && yarn build",
"dev": "tsx src/index.ts",
"start": "node build/chatbotServer.js",
"watch": "tsx watch src/index.ts",
"chatbot:dev": "tsx src/chatbotServer.ts",
"chatbot:build": "tsc",
"chatbot:start": "node build/chatbotServer.js"
},
"keywords": [
"mcp",
"customer",
"registration"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"@types/express": "^5.0.5",
"axios": "^1.7.9",
"dotenv": "^16.4.7",
"express": "^5.1.0",
"openai": "^6.8.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@vercel/node": "^5.5.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}