M

Mailgun

Send and inspect Mailgun email.

·No reviews yet
Repo
Share:

About

Auto-generated

Mailgun is a Model Context Protocol server in the Communication category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

send_message
Post a message to a channel or user
list_channels
List channels the bot can access
search_messages
Search messages by query and date range

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Mailgun.

What is the Mailgun MCP?
The Mailgun MCP enables sending and inspecting emails via the Mailgun service. It provides a standardized interface for interacting with Mailgun's email functionalities within an MCP client environment.
How do I install the Mailgun MCP in a client like Claude Desktop?
Installation in clients like Claude Desktop typically involves adding the Mailgun MCP's repository URL to the client's MCP configuration. Specific steps may vary by client but generally include a 'Add MCP' or 'Install from URL' option.
Does the Mailgun MCP require an API key?
Yes, authentication for the Mailgun MCP is done using an API key. This key is necessary to authorize your requests with the Mailgun service.
What are the primary capabilities of the Mailgun MCP?
The Mailgun MCP facilitates sending transactional emails and allows for inspecting email-related information. It acts as a bridge to Mailgun's core email API for common operations.
Is there a cost associated with using the Mailgun MCP?
The Mailgun MCP itself is community-provided and open source without a direct cost. However, using the Mailgun service through the MCP will incur costs based on Mailgun's own pricing plans and usage.
What is a limitation of the Mailgun MCP?
A limitation is that the Mailgun MCP currently uses the stdio transport. This may limit advanced integrations or performance-sensitive applications compared to more direct API interactions.

Install Mailgun

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "mailgun": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mailgun"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "mailgun": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mailgun"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "mailgun": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mailgun"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.