Skip to content
Misar.io
MCP Server

Misar MCP Server

Connect every Misar product to Claude Code and AI assistants via the Model Context Protocol. Use Misar tools directly from your AI workflow.

Claude Code Setup

Claude Code Setup

Add any Misar MCP server to Claude Code in one command. Servers are scoped per project or globally.

Install via CLI

# Add Misar Mail MCP server (project-scoped)
claude mcp add @misar/mcp-mail -- --api-key msk_your_key

# Add globally (available in all projects)
claude mcp add --global @misar/mcp-mail -- --api-key msk_your_key

# Add Misar Dev MCP server
claude mcp add @misar/mcp-dev -- --api-key mdk_your_key

Manual config (.mcp.json)

{
  "mcpServers": {
    "misar-mail": {
      "command": "npx",
      "args": ["-y", "@misar/mcp-mail"],
      "env": {
        "MISARMAIL_API_KEY": "msk_your_key"
      }
    },
    "misar-dev": {
      "command": "npx",
      "args": ["-y", "@misar/mcp-dev"],
      "env": {
        "MISARDEV_API_KEY": "mdk_your_key"
      }
    }
  }
}
Claude Desktop

Claude Desktop Setup

Add Misar servers to Claude Desktop by editing your claude_desktop_config.json.

macOS config path

~/Library/Application Support/Claude/claude_desktop_config.json

Windows config path

%APPDATA%\Claude\claude_desktop_config.json

Config example

{
  "mcpServers": {
    "misar-mail": {
      "command": "npx",
      "args": ["-y", "@misar/mcp-mail"],
      "env": { "MISARMAIL_API_KEY": "msk_your_key" }
    }
  }
}

Restart Claude Desktop after editing the config file.

Available MCP Servers

One MCP server per Misar product — install only what you need.

MisarMail

@misar/mcp-mail
Live

Tools

  • send_emailSend a transactional or marketing email
  • list_campaignsList all email campaigns
  • create_campaignCreate and schedule a campaign
  • get_analyticsRetrieve delivery and open-rate metrics
  • manage_contactsAdd, update, or unsubscribe contacts
npx -y @misar/mcp-mail

Misar.Blog

@misar/mcp-blog
Live

Tools

  • create_articleDraft and publish an article
  • list_articlesRetrieve published articles
  • get_analyticsArticle view and engagement stats
npx -y @misar/mcp-blog

MisarReach

@misar/mcp-reach
Live

Tools

  • find_leadsDiscover leads from 23 sources
  • send_outreachSend an outreach message
  • get_pipelineRetrieve deal pipeline
npx -y @misar/mcp-reach

Misar.Dev

@misar/mcp-dev
Live

Tools

  • list_pluginsBrowse available Claude Code plugins
  • install_pluginInstall a plugin into Claude Code
  • run_agentInvoke a configured AI agent
  • get_usageRetrieve API usage and quota
npx -y @misar/mcp-dev

MisarPost

@misar/mcp-post
Launching

Tools

  • create_postGenerate and schedule a social post
  • list_postsList scheduled and published posts
  • get_analyticsSocial performance metrics
npx -y @misar/mcp-post

Misar.Ink

Coming Soon

Tools

    npx -y 

    Misar.ai

    @misar/mcp-ai
    Coming Soon

    Tools

    • scaffold_projectGenerate a project from a prompt
    • deploy_projectDeploy to Coolify
    • list_projectsList all workspace projects
    npx -y @misar/mcp-ai
    Example Usage

    Using Misar MCP in Claude

    Once installed, address Misar tools naturally in your Claude conversation.

    Claude Code

    You: Send a welcome email to [email protected] using Misar Mail.
    Claude: I'll use the send_email tool from misar-mail to send that now...

    Programmatic (MCP SDK)

    import { Client } from "@modelcontextprotocol/sdk/client/index.js";
    
    const client = new Client({ name: "my-app", version: "1.0" });
    await client.connect(transport);
    
    const result = await client.callTool({
      name: "send_email",
      arguments: {
        to: "[email protected]",
        subject: "Welcome!",
        html: "<p>Hello</p>",
      },
    });

    Need a custom MCP integration?

    Contact us to discuss custom MCP servers, private tool registries, or enterprise integrations.