Missive MCP
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 MCPshow my recent unread 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
An MCP server that connects AI assistants — Claude Desktop and Claude Code — to your Missive team inbox. It gives the assistant 36 tools for contacts, conversations, messages, drafts, posts, shared labels, teams, tasks, and canned responses.
Safe by design. This server can read your inbox, organize it, post internal team comments, and merge conversations — but it cannot send an email or text to anyone outside your team, and it cannot delete anything.
missive_create_draftalways saves a draft in Missive for a person to review and send; there is no "send" tool and no send parameter.
New here? Follow the friendly step-by-step in SETUP.md — it assumes no prior experience. The rest of this page is the quick reference.
Why it feels turnkey
The assistant gets usage instructions at connect time. The server ships MCP
instructions(the same channel Claude Desktop uses for built-in tools), so the assistant already knows the rules — which list calls need a mailbox filter, that contacts need acontact_book, that drafts never send, and so on.Every tool is documented at the call site, grounded in the Missive API docs.
It documents itself. Ask it to call
missive_help(topics:usage,tools,safety,authentication, …) any time.
Related MCP server: IMAP Email MCP Server
Requirements
Node.js 18+
A Missive personal access token. In Missive: Preferences → API → Create a new token. (Requires an organization on the Missive Productive plan.)
Install
git clone https://github.com/kanjidoc/missive-mcp.git
cd missive-mcp
npm install
cp .env.example .env # paste your MISSIVE_API_TOKEN
npm run setup # validates the token, lists your resource IDs
npm run buildnpm run setup confirms the token works and prints your organizations, contact
books, teams, and users — handy for filling the optional defaults below — then
prints a ready-to-paste launcher config.
Configure your client
The launcher config carries only the start command — never your token (the
token lives only in .env). Replace the path with your absolute checkout path.
Claude Desktop — add to claude_desktop_config.json:
{
"mcpServers": {
"missive": {
"command": "node",
"args": ["/absolute/path/to/missive-mcp/dist/index.js"]
}
}
}Claude Code:
claude mcp add-json missive '{"type":"stdio","command":"node","args":["/absolute/path/to/missive-mcp/dist/index.js"]}'Restart the client, and the missive tools appear.
Configuration (.env)
Only the token is required; the rest are optional defaults so you don't repeat IDs.
Find IDs in Missive → Settings → API → Resource IDs, or run npm run setup.
Variable | Required | Purpose |
| yes | Your |
| no | Default org; org-scoped tools use it when you omit |
| no | Default contact book; contact tools use it when you omit |
| no | Default team for drafts/tasks/posts/messages that omit |
| no | Default "from" address for drafts (must be one of your Missive aliases). |
| no | Display name paired with the default from address. |
| no | Default custom-channel account for |
What's not included (and why)
The Missive API can do a few things this server deliberately leaves out. In plain terms:
Sending emails or texts to people outside your team. The assistant can write a draft and save it in Missive, but you press send. This is the main safety guardrail — an AI can't fire off a real email on your behalf. (Technically: the drafts endpoint's
send/send_at/auto_followupoptions are not exposed.)Deleting things. There is no tool to delete a contact, draft, post, canned response, or label. The only irreversible action offered is merging two conversations, and it's clearly marked as such.
Analytics reports. Missive can generate inbox/team analytics; those are slow, report-style requests that don't fit a back-and-forth assistant, so they're out.
Webhooks (real-time event subscriptions). Missive can notify an external app when something happens — that's infrastructure plumbing to set up once, not something an assistant does mid-conversation.
A few niche send-time options that only matter when actually sending: scheduled send, automated follow-up sequences, and WhatsApp message templates.
Everything else in the Missive REST API — reading and organizing conversations, contacts, tasks, labels, teams, drafts, and internal posts — is available. Any of the above is a small, self-contained addition if you want it later.
Tools (36)
Read-only tools are marked (ro); safely-repeatable updates (idem); irreversible
ones (!). See docs/TOOLS.md for the full parameter reference, and
call missive_help with topic: "usage" for recipes.
Contacts
Tool | Does |
| List contacts in a contact book (search, order, pagination). |
| Fetch one contact by UUID. |
| Create one or more contacts (infos, memberships). |
| Update contacts by UUID. ⚠️ |
Contact books & groups
Tool | Does |
| List accessible contact books (find the |
| List groups/organizations in a contact book ( |
Conversations
Tool | Does |
| List conversations — needs a mailbox filter (inbox/all/assigned/… or a label/team id). |
| Fetch one conversation by id. |
| Close/reopen, move, assign, label, recolor, or rename — without posting. |
| Merge one conversation into another. Irreversible. |
| List a conversation's messages. |
| List a conversation's comments. |
| List a conversation's drafts. |
| List a conversation's posts. |
Messages
Tool | Does |
| Fetch one or many messages by id (batch with several ids). |
| Find messages by RFC |
| Advanced — inject an incoming custom-channel message (never sends externally). |
Drafts & posts
Tool | Does |
| Save a draft (email/SMS/etc.) with optional attachments for manual review — does not send. |
| Post an internal comment/note into a conversation (visible to your team). ⚠️ Permanent, notifies the team. |
Shared labels
Tool | Does |
| List shared labels (team-shared conversation tags). |
| Create shared labels. |
| Update shared labels. |
Teams, users & organizations
Tool | Does |
| List teams. |
| Create teams (org admin/owner only). |
| Update teams (org admin/owner only). |
| List users across your organizations. |
| List your organizations (find the |
Responses (canned replies)
Tool | Does |
| List canned reply / template responses. |
| Fetch one response by id. |
| Create responses — scoped to an organization xor a user. |
| Update responses. |
Tasks
Tool | Does |
| List tasks (filter by state/team/assignee/due; |
| Fetch one task by id. |
| Create a task, tasked conversation, or subtask. |
| Update a task's fields. |
Help
Tool | Does |
| Self-documentation: overview, usage, tools, safety, authentication, and more. |
How the assistant calls it
A few rules the server teaches the model (and worth knowing yourself):
missive_list_conversationsneeds a mailbox filter — a boolean likeinbox: true, or an id likeshared_label/team_inbox. To filter by who's involved, add exactly one ofemail/domain/contact_organization.Contacts need a
contact_book; org-scoped writes need anorganization(set theMISSIVE_DEFAULT_*vars to avoid repeating them).missive_update_contactsreplaces the wholeinfos/membershipsarray you send — fetch first, then send the full merged array.Replying? Pass
conversationorreferencestomissive_create_draftand setsubjectto"Re: …". If you setMISSIVE_DEFAULT_FROM_ADDRESS, the draft uses it automatically; otherwise the assistant takes the from-address from the thread.
Example recipes (the assistant chains these for you):
Triage:
missive_list_conversations(inbox: true)→missive_update_conversations(close: true, …)Internal note:
missive_create_post(markdown: "…")— posts to the team; no email is sent.Draft a reply:
missive_get_conversation+missive_list_conversation_messages→missive_create_draft(conversation, to_fields, subject: "Re: …", body)Merge duplicates:
missive_merge_conversations(source_conversation_id, target_conversation_id)Tasks:
missive_list_tasks(state: "todo")/missive_create_task/missive_update_task
Rate limits
Missive allows 5 concurrent requests, 300/minute, and 900/15 minutes. The client
caps concurrency and automatically retries HTTP 429 honoring Retry-After. For
bulk reads, prefer the batch endpoints (e.g. missive_get_message with several ids).
Development
npm run dev # run with ts-node (no build)
npm run build # compile to dist/
npm run lint # eslint
npm test # vitest
npm run format # prettierSee CONTRIBUTING.md to add a tool, CLAUDE.md for
the architecture and conventions, and SECURITY.md for credential
handling. The design rationale lives in docs/superpowers/specs/.
License
MIT © kanjidoc
Maintenance
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/kanjidoc/missive-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server