package.json•634 B
{
"name": "google_server",
"version": "0.1.0",
"description": "MCP server for Google Custom Search API integration",
"license": "MIT",
"type": "module",
"bin": {
"google_server": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"build:unix": "tsc && chmod 755 dist/index.js",
"prepare": "npm run build",
"watch": "tsc --watch"
},
"keywords": [],
"author": "",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.0",
"dotenv": "^16.5.0",
"zod": "^3.24.3"
},
"devDependencies": {
"@types/node": "^22.14.1",
"typescript": "^5.8.3"
}
}