Gmail & PostgreSQL MCP Server
Provides AI agents with unified access to Gmail for email management (send, read, list, labels) and PostgreSQL databases for executing queries and schema inspection.
README
MCP Gmail & PostgreSQL Server
A unified Model Context Protocol (MCP) server that provides AI agents with read and write access to Gmail and PostgreSQL databases.
🚀 Two Modes Available
1. stdio Mode (for Claude Desktop)
- Direct integration with Claude Desktop
- Uses standard input/output
- No network configuration needed
2. HTTP/SSE Mode (for n8n, remote agents)
- HTTP server with Server-Sent Events (SSE)
- Can be deployed to VPS
- Accessible via URL
- Perfect for n8n AI Agent with MCP Client connector
Features
- Gmail Integration: Send emails, read emails, list emails, and manage labels
- PostgreSQL Integration: Execute queries, read/write operations, and schema inspection
- Modular Architecture: Cleanly separated services for easy maintenance
- Environment-based Configuration: Secure credential management via
.envfile
Prerequisites
- Node.js 18+
- npm or yarn
- Gmail API credentials (Google Cloud Console)
- PostgreSQL database
Installation
- Clone and install dependencies:
npm install
- Build the project:
npm run build
Configuration
Step 1: Create .env file
Copy the example file and fill in your credentials:
cp .env.example .env
Step 2: Configure Gmail
Get Gmail API Credentials
-
Go to Google Cloud Console
-
Create a new project or select an existing one
-
Enable the Gmail API:
- Navigate to "APIs & Services" > "Library"
- Search for "Gmail API" and click "Enable"
-
Create OAuth 2.0 credentials:
- Go to "APIs & Services" > "Credentials"
- Click "Create Credentials" > "OAuth client ID"
- Choose "Desktop app" as application type
- Download the credentials JSON file
-
Get your Client ID and Client Secret from the credentials
-
Get a Refresh Token:
- Run this script to authorize and get a refresh token:
node scripts/get-gmail-token.js- Or use Google's OAuth 2.0 Playground:
- Go to https://developers.google.com/oauthplayground/
- Click the gear icon (⚙️) and check "Use your own OAuth credentials"
- Enter your Client ID and Client Secret
- In the left panel, select "Gmail API v1" and check the scopes:
https://www.googleapis.com/auth/gmail.readonlyhttps://www.googleapis.com/auth/gmail.sendhttps://www.googleapis.com/auth/gmail.modify
- Click "Authorize APIs" and sign in
- Click "Exchange authorization code for tokens"
- Copy the "Refresh token" value
-
Add to
.env:
GMAIL_CLIENT_ID=your_client_id_from_step_5
GMAIL_CLIENT_SECRET=your_client_secret_from_step_5
GMAIL_REFRESH_TOKEN=your_refresh_token_from_step_6
Step 3: Configure PostgreSQL
Add your PostgreSQL connection details to .env:
POSTGRES_HOST=localhost # or your database host
POSTGRES_PORT=5432 # default PostgreSQL port
POSTGRES_DATABASE=your_db_name # your database name
POSTGRES_USER=your_db_user # your database user
POSTGRES_PASSWORD=your_password # your database password
POSTGRES_SSL=false # set to true if using SSL
Usage
For n8n (HTTP Mode) - RECOMMENDED
Start the HTTP server:
# Development
npm run dev:http
# Production
npm run build
npm run start:http
Server will be available at: http://localhost:3000/sse
See N8N_SETUP.md for complete n8n integration guide.
For Claude Desktop (stdio Mode)
# Development
npm run dev
# Production
npm start
Configure in Claude Desktop's config file (see Configuration section below).
Available Tools
Gmail Tools
gmail_list_emails: List emails from inbox with optional filters- Parameters:
query,maxResults,labelIds
- Parameters:
gmail_read_email: Read a specific email by message ID- Parameters:
messageId,format
- Parameters:
gmail_send_email: Send an email- Parameters:
to,subject,body,htmlBody(optional),cc(optional),bcc(optional)
- Parameters:
gmail_get_labels: Get all Gmail labels
PostgreSQL Tools
postgres_query: Execute SELECT queries (read-only)- Parameters:
query,params(optional array)
- Parameters:
postgres_execute: Execute write operations (INSERT, UPDATE, DELETE)- Parameters:
query,params(optional array)
- Parameters:
postgres_get_tables: List all tables in the database- Parameters:
schema(optional, default: 'public')
- Parameters:
postgres_get_table_schema: Get schema information for a table- Parameters:
tableName,schema(optional, default: 'public')
- Parameters:
Deployment to VPS
- Transfer files to your VPS:
scp -r . user@your-vps-ip:/path/to/mcp-server/
- SSH into your VPS and install:
ssh user@your-vps-ip
cd /path/to/mcp-server
npm install
npm run build
-
Create
.envfile on VPS with your credentials -
Run as a service (using PM2 or systemd):
With PM2:
npm install -g pm2
pm2 start npm --name "mcp-server" -- start
pm2 save
With systemd, create /etc/systemd/system/mcp-server.service:
[Unit]
Description=MCP Gmail & PostgreSQL Server
After=network.target
[Service]
Type=simple
User=your-user
WorkingDirectory=/path/to/mcp-server
Environment=NODE_ENV=production
ExecStart=/usr/bin/node dist/index.js
Restart=always
[Install]
WantedBy=multi-user.target
Then:
sudo systemctl enable mcp-server
sudo systemctl start mcp-server
Project Structure
.
├── src/
│ ├── index.ts # Main server entry point
│ └── services/
│ ├── gmail.service.ts # Gmail integration
│ └── postgres.service.ts # PostgreSQL integration
├── dist/ # Compiled JavaScript
├── .env # Environment variables (not in git)
├── .env.example # Example environment file
├── package.json
├── tsconfig.json
└── README.md
Security Notes
- Never commit
.envfile to version control - Use strong database passwords
- Keep Gmail OAuth credentials secure
- Consider using environment-specific credentials for production
- Regularly rotate refresh tokens and passwords
Troubleshooting
Gmail not working
- Verify your refresh token is valid and not expired
- Check that all required OAuth scopes are granted
- Ensure
GMAIL_CLIENT_IDandGMAIL_CLIENT_SECRETare correct
PostgreSQL connection issues
- Verify database credentials are correct
- Check if PostgreSQL is running and accessible
- For remote connections, ensure firewall rules allow connections
- If using SSL, set
POSTGRES_SSL=truein.env
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。