DEV Community

Gulshan Yadav
Gulshan Yadav

Posted on

Introducing Misar.Blog MCP Server: Publish Blog Posts with AI Agents

We just launched the Misar.Blog MCP Server — a Model Context Protocol server that lets AI agents publish and manage blog content on Misar.Blog directly.

What is it?

The Misar.Blog MCP Server exposes 20 tools that AI agents (Claude, Cursor, Cline, etc.) can use to:

  • Publish articles — create drafts, publish posts, schedule content
  • Manage series — create and organize multi-part article series
  • Analytics — query article views, engagement, and performance data
  • Comments & Reactions — moderate comments, fetch reactions
  • Newsletter — manage subscriber lists and campaigns
  • AI content generation — generate article content with AI assistance
  • Tag management — organize content with tags
  • Media uploads — attach images and files to posts

Quick Start

Connect via Smithery (no setup needed):

https://smithery.ai/servers/misar/misarblog-mcp
Enter fullscreen mode Exit fullscreen mode

Or install locally:

npm install -g misarblog-mcp
Enter fullscreen mode Exit fullscreen mode

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "misarblog": {
      "command": "npx",
      "args": ["-y", "misarblog-mcp"],
      "env": {
        "MISARBLOG_API_KEY": "your_api_key_here"
      }
    }
  }
}
Enter fullscreen mode Exit fullscreen mode

Get your API key from misar.blog/settings/api.

Remote MCP URL

You can also connect directly via streamable HTTP:

https://www.misar.blog/api/mcp
Enter fullscreen mode Exit fullscreen mode

With header: Authorization: Bearer <your_api_key>

Links

License: MIT | Free with a Misar.Blog account

Top comments (0)