Missive MCP Server
An MCP server that interfaces with the Missive API, enabling Claude to manage email conversations, contacts, and team collaboration.
README
Missive MCP Server
An MCP (Model Context Protocol) server that interfaces with the Missive API, enabling Claude to manage email conversations, contacts, and team collaboration.
Prerequisites
- Node.js 18+
- Missive account with Productive plan (required for API access)
- Missive API token
Installation
npm install
npm run build
Modes
The server runs in two modes: stdio for local single-user use, and remote for hosted multi-user deployments.
Stdio Mode (Local)
Set the MISSIVE_API_TOKEN environment variable:
export MISSIVE_API_TOKEN="your_api_token_here"
npm start
To get your API token: open Missive, go to Settings > API, click "Create a new token".
Add to your Claude Desktop configuration (claude_desktop_config.json):
{
"mcpServers": {
"missive": {
"command": "/path/to/node",
"args": ["/path/to/missive-mcp/dist/index.js"],
"env": {
"MISSIVE_API_TOKEN": "your_api_token_here"
}
}
}
}
Important: Use the full path to node (run which node to find it). Claude Desktop has a restricted PATH and may not find node otherwise.
Remote Mode (Hosted)
Runs an HTTP server with OAuth. Each user provides their own Missive PAT through a browser-based authorization flow.
export ENCRYPTION_KEY="$(openssl rand -hex 32)"
export BASE_URL="https://missive-mcp.example.com"
npm run remote
| Variable | Required | Description |
|---|---|---|
ENCRYPTION_KEY |
Yes | 32-byte hex string for AES-256-GCM PAT encryption |
BASE_URL |
Yes | Public URL of the server |
PORT |
No | HTTP port (default 3000) |
DATA_DIR |
No | Directory for storage files (default ./data) |
Point MCP clients at {BASE_URL}/mcp. The server handles OAuth automatically:
- Client discovers endpoints via
/.well-known/oauth-authorization-server - Client registers dynamically via
/register - User is redirected to a form to paste their Missive API token
- Server validates the token, encrypts and stores it, issues OAuth tokens
- Client uses bearer tokens to call
/mcp
PATs are encrypted at rest with AES-256-GCM. OAuth tokens expire after 1 hour (refresh tokens last 30 days).
Tools
Reference Data
| Tool | Description |
|---|---|
list_organizations |
List organizations you belong to |
list_teams |
List teams (for assignments) |
list_users |
List users (for assignments) |
list_contact_books |
List contact books (required before creating contacts) |
list_shared_labels |
List labels (for filtering and tagging) |
Conversations
| Tool | Description |
|---|---|
list_conversations |
List conversations with filters (inbox, assigned, closed, team, label, email, domain) |
get_conversation |
Get a single conversation by ID |
Messages
| Tool | Description |
|---|---|
get_conversation_timeline |
Get all messages, posts, and comments as a unified chronological timeline |
get_message |
Get full message content (with body truncation options) |
Drafts
| Tool | Description |
|---|---|
list_drafts |
List drafts in a conversation |
create_draft |
Create a draft (not sent) |
send_message |
Send a message immediately (rate limited) |
delete_draft |
Delete an unsent draft |
Contacts
| Tool | Description |
|---|---|
list_contacts |
List contacts in a book (with search) |
get_contact |
Get a single contact |
create_contact |
Create a new contact |
update_contact |
Update an existing contact |
Management
| Tool | Description |
|---|---|
create_post |
Add a post to a conversation; close, label, assign, or move to team |
Examples
Read inbox
Use list_conversations with inbox=true to see recent conversations.
Reply to an email
1. Use list_conversations to find the conversation
2. Use get_conversation_timeline to see the full thread (messages + team activity)
3. Use send_message with the conversation ID to reply
Search for emails from a domain
Use list_conversations with domain="example.com"
Assign a conversation
1. Use list_users to find the user ID
2. Use list_organizations to get the org ID
3. Use create_post with add_assignees=[user_id]
Rate Limits
send_message: 10 per minute, 100 per hour (client-enforced)- Missive API rate limits are undocumented; the client handles 429 responses
Security
- API tokens are validated on startup (stdio) or on authorization (remote)
- Tokens are never logged or included in error messages
- In remote mode, PATs are encrypted at rest with AES-256-GCM
- Email body content is never logged
- Input validation on all tool parameters
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 模型以安全和受控的方式获取实时的网络信息。