← misar.blog

INDIVIDUAL MCP TOOL

create_series

Create a new, empty series — a named collection that related articles can be added to.

misar.blognone authenticationAvailability not checked

LIVE ENDPOINT

https://api.misar.io/blog/mcp

No auth detected

Connect to this endpoint to inspect the live schema for create_series and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Potential side effects detected · medium confidence · heuristic, not a guarantee.

  • A tool name or description contains a write-action term.

Parent server

misar.blog

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.misarblog]
url = "https://api.misar.io/blog/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "misarblog": {
      "type": "http",
      "url": "https://api.misar.io/blog/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: misarblog
Remote MCP URL: https://api.misar.io/blog/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "misarblog": {
      "url": "https://api.misar.io/blog/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "misarblog": {
      "type": "http",
      "url": "https://api.misar.io/blog/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "misarblog",
  "transport": "streamable-http",
  "url": "https://api.misar.io/blog/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • upgrade — Show the account's current plan, how much of each quota remains, and what a higher plan unlocks.
  • get_profile — Fetch the authenticated account's own creator profile: id, username, display name, bio, public profile URL, and whether Stripe payouts are connected.
  • get_analytics_summary — Summarise the account's performance over a trailing window: page views, gross and net revenue, and active subscriber count.
  • list_my_articles — List articles owned by the authenticated account, newest first, including drafts and scheduled posts.
  • get_article — Fetch a single article by slug, including its full Markdown body.
  • publish_article — Create a new article and make it live immediately, or schedule it for a future time.
  • create_draft — Save an article as an unpublished draft.
  • update_article — Change the title, body, or tags of an article or draft that already exists.