Missive MCP Server

Missive MCP Server

An MCP server that interfaces with the Missive API, enabling Claude to manage email conversations, contacts, and team collaboration.

Category
Visit Server

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:

  1. Client discovers endpoints via /.well-known/oauth-authorization-server
  2. Client registers dynamically via /register
  3. User is redirected to a form to paste their Missive API token
  4. Server validates the token, encrypts and stores it, issues OAuth tokens
  5. 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

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Exa Search

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.

Official
Featured