package.json•1.2 kB
{
"name": "google-places-mcp",
"version": "1.0.0",
"description": "MCP server for Google Places API integration",
"main": "build/main.js",
"type": "module",
"bin": {
"google-places-mcp": "./build/main.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc && chmod +x build/main.js && chmod +x build/test-api-key.js",
"build:win": "tsc",
"dev": "tsx watch --env-file=.env src/main.ts",
"dev:sse": "tsx watch --env-file=.env src/app.ts",
"test-api": "tsx --env-file=.env src/test-api-key.ts",
"test-api:built": "node --env-file=.env build/test-api-key.js",
"start": "node build/main.js",
"start:sse": "node build/app.js"
},
"keywords": [
"mcp",
"google-places",
"api",
"server"
],
"author": "",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.1",
"axios": "^1.8.4",
"dotenv": "^16.3.1",
"express": "^4.18.3",
"zod": "^3.24.3",
"zod-to-json-schema": "^3.24.5"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^22.14.1",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
},
"files": [
"build"
]
}