missive-mcp-server

stevenayl/missive-mcp-server

3.3

If you are the rightful owner of missive-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

The Missive MCP Server is designed to integrate with the Missive App, allowing users to manage email drafts and send emails through a Model Context Protocol server.

The Missive MCP Server is a specialized server that facilitates seamless integration with the Missive App, enabling users to manage their email communications efficiently. It provides a robust set of features for creating, sending, and managing email drafts, as well as sending emails directly. The server is built to work with the Missive API, requiring an API token for authentication. It supports various operations such as creating drafts, sending existing drafts, and listing all drafts. The server can be configured to work with different platforms, including Claude Desktop and N8N, making it versatile for various use cases. With its easy installation and configuration process, the Missive MCP Server is a valuable tool for users looking to streamline their email management tasks.

Features

  • Create email drafts
  • Send existing drafts
  • Create and send emails in one operation
  • List all drafts
  • Get draft details

Usages

usage with Claude Desktop

{
  "mcpServers": {
    "missive": {
      "command": "node",
      "args": ["/path/to/missive-mcp-server/dist/index.js"],
      "env": {
        "MISSIVE_API_TOKEN": "your-api-token-here"
      }
    }
  }
}

usage with N8N

bash
# Clone and set up the server
git clone https://github.com/stevenayl/missive-mcp-server.git
cd missive-mcp-server
npm install
npm run build

# Set your Missive API token
export MISSIVE_API_TOKEN="your-missive-api-token-here"

# Run the HTTP server
npm run http
# Or for production: npm run http:prod

# In N8N MCP Client node:
# SSE Endpoint: http://localhost:3000/sse
# Authentication: Bearer Auth
# Credential for Bearer Auth: Leave empty (the API token is handled server-side)
# Tools to Include: All

Tools

  1. create_draft

    Create a new email draft in Missive.

  2. send_draft

    Send an existing draft by its ID.

  3. create_and_send

    Create and immediately send an email.