An open API service indexing awesome lists of open source software.

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.

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"
}
}
}
```