https://github.com/spongycode/email-mcp-server
Lightweight MCP server to send emails to multiple recipients with optional CC and attachments.
https://github.com/spongycode/email-mcp-server
email gemini-api mcp mcp-server mcp-tools
Last synced: about 22 hours ago
JSON representation
Lightweight MCP server to send emails to multiple recipients with optional CC and attachments.
- Host: GitHub
- URL: https://github.com/spongycode/email-mcp-server
- Owner: spongycode
- Created: 2025-07-06T09:50:19.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-07-11T15:16:53.000Z (10 months ago)
- Last Synced: 2025-09-06T22:40:22.612Z (8 months ago)
- Topics: email, gemini-api, mcp, mcp-server, mcp-tools
- Language: JavaScript
- Homepage:
- Size: 4.88 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Email MCP Server – Lightweight Multi-Recipient Mail Sender
## Demo:
## Usage:
Add the `.env` file with the correct credentials:
```.env
GMAIL_USER=yourmail@gmail.com
GMAIL_PASS=yourpasscode
```
### Usage with [Google Gemini CLI](https://github.com/google-gemini/gemini-cli):
Add this to your `.gemini/settings.json` file:
```json
{
"theme": "Default Light",
"selectedAuthType": "oauth-personal",
"mcpServers": {
"email-node-server": {
"command": "node",
"args": ["index.js", "--verbose"],
"cwd": "/email-mcp-server"
}
}
}
```