package.json•1.04 kB
{
"name": "zoho-projects-mcp-server",
"version": "1.0.0",
"description": "MCP server for Zoho Projects API integration",
"type": "module",
"main": "dist/index.js",
"bin": {
"zoho-projects-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"start:http": "node dist/http-server.js",
"dev:http": "tsc --watch & node --watch dist/http-server.js",
"test": "node test-connection.js",
"setup": "bash setup.sh"
},
"keywords": [
"mcp",
"zoho",
"projects",
"model-context-protocol"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^5.1.0"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^20.0.0",
"typescript": "^5.3.0"
}
}