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-mailTools
send_emailSend a transactional or marketing emaillist_campaignsList all email campaignscreate_campaignCreate and schedule a campaignget_analyticsRetrieve delivery and open-rate metricsmanage_contactsAdd, update, or unsubscribe contacts
npx -y @misar/mcp-mail
Misar.Blog
@misar/mcp-blogTools
create_articleDraft and publish an articlelist_articlesRetrieve published articlesget_analyticsArticle view and engagement stats
npx -y @misar/mcp-blog
MisarReach
@misar/mcp-reachTools
find_leadsDiscover leads from 23 sourcessend_outreachSend an outreach messageget_pipelineRetrieve deal pipeline
npx -y @misar/mcp-reach
Misar.Dev
@misar/mcp-devTools
list_pluginsBrowse available Claude Code pluginsinstall_pluginInstall a plugin into Claude Coderun_agentInvoke a configured AI agentget_usageRetrieve API usage and quota
npx -y @misar/mcp-dev
MisarPost
@misar/mcp-postTools
create_postGenerate and schedule a social postlist_postsList scheduled and published postsget_analyticsSocial performance metrics
npx -y @misar/mcp-post
Misar.Ink
Tools
npx -y
Misar.ai
@misar/mcp-aiTools
scaffold_projectGenerate a project from a promptdeploy_projectDeploy to Coolifylist_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.