Misarblog MCP Server

Misar.Blog MCP server — publish and manage articles, series, comments, reactions, newsletters, AI writing tools, cover-image generation, and

Remote serverstreamable-http

What is the Misarblog MCP MCP server?

If you already use Misarblog MCP, the misarblog mcp mcp server is the piece that lets your assistant work with it directly. Misar.Blog MCP server — publish and manage articles, series, comments, reactions, newsletters, AI writing tools, cover-image generation, and analytics from Claude, Cursor, VS Code, Windsurf, and any MCP client.

What the server does

Works with Claude (Desktop, Code, and web), Cursor, VS Code, Windsurf, Cline, Zed, Gemini CLI, ChatGPT, and any other MCP-compatible client — over stdio or Streamable HTTP.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • upgrade — Show your current Misar.Blog plan, how much of each quota you have left, and what upgrading unlocks
  • get_profile — Get your Misar.Blog creator profile
  • get_analytics_summary — Get analytics summary (views, revenue, subscribers) for a time period
  • list_my_articles — List your articles on Misar.Blog
  • get_article — Get a single article by slug, including full markdown content
  • publish_article — Publish a new article (or schedule it) on Misar.Blog
  • create_draft — Save an article as a draft on Misar.Blog (for review before publishing)
  • update_article — Update the title, body, or tags of an existing article or draft
  • search_articles — Search PUBLISHED articles across Misar.Blog by keyword, tag, or author — including other creators' work
  • research_topic — Research a topic and get AI-generated insights, sources, and a content outline
  • generate_title_seo — Generate 5 SEO/AEO/GEO-optimized article titles from a topic or keyword prompt
  • suggest_titles — Generate 5 compelling, SEO-friendly article title options from your existing article content

Installation

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

Credentials and setup notes

Configuration is passed through the environment: MISARBLOG_API_KEY, MISARBLOG_BASE_URL. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Where it fits

Among the AI and media services options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Misarblog MCP's toolset — upgrade, get_profile, get_analytics_summary and 11 more — is a fair guide to whether it matches your workflow. It is maintained by mrgulshanyadav; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Worth knowing first

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Misarblog MCP.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
upgradeShow your current Misar.Blog plan, how much of each quota you have left, and what upgrading unlocks.
get_profileGet your Misar.Blog creator profile.
get_analytics_summaryGet analytics summary (views, revenue, subscribers) for a time period.
list_my_articlesList your articles on Misar.Blog.
get_articleGet a single article by slug, including full markdown content.
publish_articlePublish a new article (or schedule it) on Misar.Blog.
create_draftSave an article as a draft on Misar.Blog (for review before publishing).
update_articleUpdate the title, body, or tags of an existing article or draft.
search_articlesSearch PUBLISHED articles across Misar.Blog by keyword, tag, or author — including other creators' work.
research_topicResearch a topic and get AI-generated insights, sources, and a content outline.
generate_title_seoGenerate 5 SEO/AEO/GEO-optimized article titles from a topic or keyword prompt.
suggest_titlesGenerate 5 compelling, SEO-friendly article title options from your existing article content.
generate_cover_imageGenerate a cover image using AI and upload it to the Misar.Blog CDN.
get_seriesList all your series on Misar.Blog.

How to install the Misarblog MCP MCP server

{
  "mcpServers": {
    "misarblog": {
      "command": "npx",
      "args": ["-y", "@misarblog/mcp@latest"],
      "env": { "MISARBLOG_API_KEY": "mbk_your_key_here" }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
MISARBLOG_API_KEYCredential the server authenticates with.Yes
MISARBLOG_BASE_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Misarblog MCP to upgrade.
  • Use Misarblog MCP to get profile.
  • Use Misarblog MCP to get analytics summary.

Frequently asked questions

It connects Misarblog MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (upgrade, get_profile, get_analytics_summary, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Misarblog MCP directly.