Missive MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Missive MCP ServerList my inbox conversations"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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 buildModes
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 startTo 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 remoteVariable | Required | Description |
| Yes | 32-byte hex string for AES-256-GCM PAT encryption |
| Yes | Public URL of the server |
| No | HTTP port (default 3000) |
| No | Directory for storage files (default |
Point MCP clients at {BASE_URL}/mcp. The server handles OAuth automatically:
Client discovers endpoints via
/.well-known/oauth-authorization-serverClient registers dynamically via
/registerUser 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 you belong to |
| List teams (for assignments) |
| List users (for assignments) |
| List contact books (required before creating contacts) |
| List labels (for filtering and tagging) |
Conversations
Tool | Description |
| List conversations with filters (inbox, assigned, closed, team, label, email, domain) |
| Get a single conversation by ID |
Messages
Tool | Description |
| Get all messages, posts, and comments as a unified chronological timeline |
| Get full message content (with body truncation options) |
Drafts
Tool | Description |
| List drafts in a conversation |
| Create a draft (not sent) |
| Send a message immediately (rate limited) |
| Delete an unsent draft |
Contacts
Tool | Description |
| List contacts in a book (with search) |
| Get a single contact |
| Create a new contact |
| Update an existing contact |
Management
Tool | Description |
| 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 replySearch 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
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/grncdr/missive-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server