# io.github.mrgulshanyadav/misarblog-mcp (npm · @misarblog/mcp)

Publish blog posts, manage drafts, generate AI cover images, and pull analytics from Misar.Blog.

- Trust score: 67/100 (medium)
- Change this week: +21
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `@misarblog/mcp`: 67/100 (this document), [markdown](https://verifymcp.io/servers/mrgulshanyadav-misarblog-mcp/misarblog-mcp.md), [page](https://verifymcp.io/servers/mrgulshanyadav-misarblog-mcp/misarblog-mcp)

## Channel facts

- Registry: `npm`
- Package: `@misarblog/mcp`
- Version: `1.0.6`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 29 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 71/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 1237 tokens (~53/item across 23 items; 23 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 23/100
  - Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 96/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 88% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add mrgulshanyadav-misarblog-mcp -- npx -y @misarblog/mcp
```

### Codex

```bash
codex mcp add mrgulshanyadav-misarblog-mcp -- npx -y @misarblog/mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "mrgulshanyadav-misarblog-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@misarblog/mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add mrgulshanyadav-misarblog-mcp --command npx --arg -y --arg @misarblog/mcp
```

### Hermes

```yaml
mcp_servers:
  mrgulshanyadav-misarblog-mcp:
    command: "npx"
    args: ["-y", "@misarblog/mcp"]
```

### Other

```json
{
  "mcpServers": {
    "mrgulshanyadav-misarblog-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@misarblog/mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-02 (score 67, +59)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [functional regression] Security disclosure: fail → unverified
- [functional regression] Dependency health: partial → unverified
- [functional improvement] Tool coverage: unverified → 100
- [functional improvement] License: unverified → pass
- [functional improvement] Stability: unverified → 0.20
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Schema quality: unverified → good
- [functional] Licence: MIT

### 2026-08-01 (score 8, −13)

- [functional regression] Tool coverage: 100 → unverified
- [functional improvement] Dependency health: unverified → partial
- [functional] First check of Schema quality: unverified

### 2026-07-31 (score 21, −25)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-27 (score 46)

First indexed and scored.

## MCP tools (23)

### `login` (~115 tokens)

Authenticate with your Misar.Blog account via browser — no API key copy-paste needed. Opens your browser to the settings page where you click 'Authorize MCP Access'. Your API key is saved to ~/.misarblog/config.json.

Input parameters:

- `base_url` (string): Misar.Blog base URL for self-hosted instances.
- `force` (boolean): Force re-authentication even if already logged in (rotates your API key).
- `port` (integer): Local callback port (9001–9099). Random by default.

### `status` (~31 tokens)

Check whether you are authenticated with Misar.Blog and which account is connected. Run this first to verify your connection.

### `get_profile` (~17 tokens)

Get your Misar.Blog creator profile

### `get_analytics_summary` (~48 tokens)

Get analytics summary (views, revenue, subscribers) for a time period

Input parameters:

- `days` (integer): Number of days to look back (default: 30, max: 365)

### `list_my_articles` (~45 tokens)

List your articles on Misar.Blog

Input parameters:

- `limit` (integer): Number of articles to return
- `status` (string): Filter by status (omit for all published)

### `get_article` (~30 tokens)

Get a single article by slug, including full markdown content

Input parameters:

- `slug` (string, required): The article slug

### `publish_article` (~105 tokens)

Publish a new article (or schedule it) on Misar.Blog

Input parameters:

- `body_markdown` (string, required): Full article body in Markdown
- `cover_image_url` (string): URL of the cover image
- `schedule_at` (string): ISO 8601 timestamp to schedule. Omit to publish immediately.
- `tags` (array): Up to 10 tags
- `title` (string, required): Article title
- `visibility` (string): Who can read this article

### `create_draft` (~60 tokens)

Save an article as a draft on Misar.Blog (for review before publishing)

Input parameters:

- `body_markdown` (string, required): Full article body in Markdown
- `tags` (array): Tags for the draft
- `title` (string, required): Draft title

### `research_topic` (~47 tokens)

Research a topic and get AI-generated insights, sources, and a content outline. Useful before writing an article.

Input parameters:

- `query` (string, required): Research topic or question. Be specific for best results.

### `generate_title_seo` (~152 tokens)

Generate 5 SEO/AEO/GEO-optimized article titles from a topic or keyword prompt. Targets high-volume, low-competition long-tail keywords. Optimized for Google, AI answer engines (ChatGPT, Perplexity, Claude), Google AI Overviews, and AI search experiences. Each title includes a keyword strategy hint.

Input parameters:

- `context` (string): Optional: existing article content (plain text or markdown). Providing it lets the AI align titles with your actual content.
- `prompt` (string, required): Your article topic or target keywords. Be specific — include your niche, audience, and any long-tail phrases you want to rank for. Example: 'best AI writing tools for beginner bloggers 2025'

### `suggest_titles` (~59 tokens)

Generate 5 compelling, SEO-friendly article title options from your existing article content. Use generate_title_seo instead if you want to target specific keywords or have not written content yet.

Input parameters:

- `context` (string, required): Your article content in plain text or markdown

### `upload_image` (~45 tokens)

Upload a local image file to the Misar.Blog CDN

Input parameters:

- `file_path` (string, required): Absolute path to the image file (JPEG, PNG, WebP, or GIF)

### `generate_cover_image` (~58 tokens)

Generate a cover image using AI and upload it to the Misar.Blog CDN

Input parameters:

- `prompt` (string, required): Description of the image to generate
- `size` (string): Image dimensions (default: landscape 1792x1024)

### `get_series` (~18 tokens)

List all your series on Misar.Blog

### `create_series` (~38 tokens)

Create a new series to group related articles

Input parameters:

- `description` (string): Short description of the series
- `title` (string, required): Series title

### `add_to_series` (~59 tokens)

Add an existing article to a series

Input parameters:

- `article_slug` (string, required): The article slug to add
- `position` (integer): Position in the series (optional, appends if omitted)
- `series_slug` (string, required): The series slug

### `list_comments` (~56 tokens)

Get public comments for an article. Rate-limited by IP — no API key required.

Input parameters:

- `article_id` (string, required): UUID of the article to fetch comments for
- `limit` (integer)
- `offset` (integer)

### `get_follow_status` (~46 tokens)

Get public follow status and follower count for a user by their profile UUID. No API key required.

Input parameters:

- `user_id` (string, required): UUID of the profile to check follow status for

### `list_newsletter_subscribers` (~36 tokens)

Get your newsletter subscriber list. Requires API key authentication.

Input parameters:

- `limit` (integer)
- `offset` (integer)

### `list_newsletter_issues` (~31 tokens)

Get your sent and scheduled newsletter issues. Requires API key authentication.

Input parameters:

- `limit` (integer)

### `get_reactions` (~35 tokens)

Get reaction counts and your reactions for an article. Requires API key.

Input parameters:

- `article_id` (string, required): UUID of the article

### `add_reaction` (~55 tokens)

Add a reaction to an article. No-ops if already reacted. Requires API key.

Input parameters:

- `article_id` (string, required): UUID of the article
- `type` (string, required): Reaction type: like, clap, or bookmark

### `remove_reaction` (~51 tokens)

Remove a specific reaction from an article. Requires API key.

Input parameters:

- `article_id` (string, required): UUID of the article
- `type` (string, required): Reaction type to remove: like, clap, or bookmark

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/mrgulshanyadav-misarblog-mcp/misarblog-mcp#diagnostics

## Score history

- 2026-08-03: 67
- 2026-08-02: 67
- 2026-08-01: 8
- 2026-07-31: 21
- 2026-07-30: 46
- 2026-07-28: 46
- 2026-07-27: 46

## Links

- npm package: https://www.npmjs.com/package/@misarblog/mcp
- Socket report: https://socket.dev/npm/package/@misarblog/mcp
- Repository: https://github.com/mrgulshanyadav/misarblog-mcp
- Changelog RSS feed: https://verifymcp.io/servers/mrgulshanyadav-misarblog-mcp/misarblog-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/mrgulshanyadav-misarblog-mcp/misarblog-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/mrgulshanyadav-misarblog-mcp/misarblog-mcp
