mcp-ecc
A comprehensive MCP server that aggregates email, calendar, and contacts across Google, Microsoft, Zoho, and IMAP/SMTP services, designed for headless environments with OAuth device flow support.
README
EMail Calendar Contact MCP Server (mcp-ecc)
A comprehensive Model Context Protocol (MCP) server that aggregates email, calendar, and contacts across Google Workspace, Microsoft Graph (Office 365), Zoho Mail, and traditional IMAP/SMTP services.
It is specifically architected for headless, remote, or containerized environments, featuring OAuth 2.0 Device Authorization Grant (Device Code Flow) support and local encrypted token storage.
1. High-Level Core Architecture
┌────────────────────────────────────────────────────────┐
│ AI IDE / Agent Host │
└───────────────────────────┬────────────────────────────┘
│ JSON-RPC 2.0 (stdio / sse)
▼
┌────────────────────────────────────────────────────────┐
│ Your MCP Server │
│ │
│ ┌──────────────────┐ ┌──────────────────┐ │
│ │ MCP Protocol │ │ Credential/Token│ │
│ │ Router (Tools) │ │ Storage │ │
│ └────────┬─────────┘ └────────┬─────────┘ │
│ │ │ │
│ ▼ ▼ │
│ ┌─────────────────────────────────────────────────┐ │
│ │ Account Manager │ │
│ └────┬──────────────┬──────────────┬──────────┬───┘ │
└───────┼──────────────┼──────────────┼──────────┼───────┘
▼ ▼ ▼ ▼
┌──────────┐ ┌──────────┐ ┌─────────┐┌──────────┐
│ Google │ │Microsoft │ │ Zoho ││ IMAP/SMTP│
│ API │ │Graph API │ │ API ││ Server │
└──────────┘ └──────────┘ └─────────┘└──────────┘
- MCP Router Layer: Exposes standardized tools (
email_*,calendar_*,contacts_*) and resources (comms://{accountId}/today-agenda) using the@modelcontextprotocol/sdk. - Account Provider Registry: Dynamically routes actions to correct integrations based on provider type.
- Headless Auth Manager: Generates device authorization codes, prints user prompts, polls endpoints for tokens, and handles token expiration refreshes automatically.
- Encrypted Local Storage: A JSON file securing tokens with AES-256-GCM.
2. Prerequisites & Setup
Requirements
- Node.js v18+ or v20+
- npm (comes with Node.js)
Installation
- Clone or copy this repository to your target server.
- Install the dependencies:
npm install - Build the TypeScript source code:
npm run build
Configuration (.env)
The local .env file only requires a master encryption key to encrypt token credentials:
# Encryption Key (Used to encrypt config.json via AES-256-GCM)
# If omitted, credentials will be stored in plain JSON.
MCP_ENCRYPTION_KEY=my_secure_encryption_key
# Optional parameters
# PORT=3000
# MCP_STORAGE_FILE=./config.json
All OAuth application details (Client ID, Client Secret, and Microsoft Tenant IDs for M365 accounts) are collected interactively during authentication and saved inside the localized config.json file per account. This allows multi-tenant, multi-app configurations for different mailboxes.
3. Registering / Authenticating Accounts
You can register and configure accounts using the interactive CLI tool or directly via the authenticate_account tool:
Method 1: Interactive CLI Tool (Recommended)
Run the interactive CLI configurator from your terminal:
npm run configure
This utility will prompt you to choose your provider, enter your account identifier, and guide you through the device authorization flow or password setup.
Method 2: Via MCP Tool Call
You can also authenticate accounts directly using the authenticate_account tool:
A. Google or Microsoft (Device Authorization Grant)
- Run
authenticate_accountwith the targetprovider(e.g."google"or"microsoft") and your targetaccountId(e.g.,"user@gmail.com"). - The server will output a terminal instruction:
Please configure this account by going to: https://google.com/device Enter the code: ABCD-EFGH - Open the URL on any device (phone, laptop), log in, and enter the code.
- The server polls in the background, obtains the refresh token, encrypts it, and saves it locally.
B. IMAP / SMTP (App Passwords)
For standard email providers (e.g., iCloud, Fastmail, or self-hosted mail servers):
- Call
authenticate_accountwithprovider: "imap_smtp". - Provide your
appPasswordand aconfigobject containing the host details:{ "provider": "imap_smtp", "accountId": "me@example.com", "appPassword": "abcd-efgh-ijkl-mnop", "config": { "imapHost": "imap.example.com", "imapPort": 993, "imapTls": true, "smtpHost": "smtp.example.com", "smtpPort": 465, "smtpSecure": true } }
4. MCP Data Exposure & Functionality
Resources
Allows agents to fetch a daily summary instantly.
comms://{accountId}/today-agenda: Returns a consolidated markdown overview containing today's calendar events and recent unread email counts.
Tools
✉️ Email (email_*)
email_list_emails(accountId, folder, limit, query): Search or view recent email headers and snippets.email_get_email(accountId, messageId): Fetches clean text body/contents of an email.email_send_email(accountId, to, subject, body, cc, bcc): Dispatches text emails.email_manage_email(accountId, messageId, action): Actions:archive|read|unread|star.email_delete_email(accountId, messageId): Trashes or deletes messages.
📅 Calendar (calendar_*)
calendar_list_events(accountId, startTime, endTime): View scheduled calendar entries.calendar_create_event(accountId, title, startTime, endTime, description, attendees): Inject new appointments.calendar_update_event(accountId, eventId, patches): Patch time/description/attendees.calendar_delete_event(accountId, eventId): Cancel or delete calendar items.
👥 Contacts (contacts_*)
contacts_search_contacts(accountId, query): Find details by name/keyword.contacts_create_contact(accountId, name, email, phone): Create address book entries.contacts_delete_contact(accountId, contactId): Delete contacts.
5. Running & Deployment
A. One-Command Local Installer
For quick setup and local bin registration, run:
chmod +x install.sh
./install.sh
This installs npm packages, compiles TypeScript, copies default environment parameters to .env, and registers the mcp-ecc command globally.
B. Running locally via CLI (mcp-ecc)
Once installed or linked, you can execute commands directly:
- Configure / Add account:
mcp-ecc auth - Re-authenticate account:
mcp-ecc reauth <account-id> - Edit account settings:
mcp-ecc edit-account <account-id> - Delete account:
mcp-ecc delete-account <account-id> - List registered accounts:
mcp-ecc list-accounts - Launch Stdio Server (default):
mcp-ecc start - Launch SSE Server:
mcp-ecc start --sse --port 3001
C. Running in Docker (Lightweight Container)
You can run this server inside a lightweight alpine container. Credentials and settings persist on your host machine.
Build the image:
docker build -t mcp-ecc .
Run with Stdio (Attached to an Agent Host process):
docker run -i --rm -v $(pwd)/data:/data mcp-ecc start
Note: The -i flag ensures standard input and output streams are kept open for stdio JSON-RPC communication.
Run with Server-Sent Events (SSE / HTTP):
docker run -d --name mcp-ecc -p 3001:3001 -v $(pwd)/data:/data -e PORT=3001 -e MCP_ENCRYPTION_KEY=your_key mcp-ecc start --sse
Using Docker Compose:
To spin it up quickly in background HTTP mode:
docker compose up -d
All account credentials will be persisted inside the ./data directory on the host.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.