package.json•1.07 kB
{
"name": "mcp-gmail-postgres-server",
"version": "1.0.0",
"description": "MCP server with Gmail and PostgreSQL access for agents",
"type": "module",
"main": "dist/index.js",
"bin": {
"mcp-gmail-postgres-server": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"start:http": "node dist/http-server.js",
"dev": "tsx watch src/index.ts",
"dev:http": "tsx watch src/http-server.ts",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"gmail",
"postgresql",
"server"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"googleapis": "^129.0.0",
"pg": "^8.11.3",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"cors": "^2.8.5"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/pg": "^8.10.9",
"@types/express": "^4.17.21",
"@types/cors": "^2.8.17",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}