package.json•1.15 kB
{
"name": "email-mcp",
"version": "1.0.0",
"type": "module",
"main": "dist/index.js",
"bin": {
"email-mcp-server": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node --esm src/index.ts",
"start": "node dist/index.js",
"start-gateway": "npm run build && npx supergateway --stdio \"node dist/index.js\" --port 3200",
"install-global": "npm run build && npm install -g .",
"quick-setup": "npm install && npm run build && echo \"✅ 安装完成!请查看 README.md 了解配置方法\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": ["mcp", "email", "gmail", "smtp", "imap"],
"author": "",
"license": "ISC",
"description": "Email MCP Server for email interactions - send, receive, and manage emails",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"nodemailer": "^6.9.0",
"googleapis": "^131.0.0",
"dotenv": "^16.3.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/node": "^22.15.21",
"@types/nodemailer": "^6.4.0",
"supergateway": "^2.8.3",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}