npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

blogwriter-mcp

v0.1.0

Published

Deslop blog writing via your own writing samples

Readme

blogwriter-mcp

Write blog posts from your material and in your voice. Your agent gathers the material (your thesis, your experiences, claims it verified), this server sends it to a separate model that writes the post, and the agent checks the result before sending corrections back.

Install with Claude Code

/plugin marketplace add paraspace-dev/writer-mcps
/plugin install blogwriter@writer-mcps

Claude Code prompts once for an OpenAI API key and stores it in the OS keychain. The plugin registers the blogwriter MCP server, a skill that keeps the agent in the material-in role, and a command to set up project writing configuration:

/blogwriter:blogwriter-init

How it works

The agent calls create for a new post, then checks the result against its material. If it finds an error, it calls edit with the corrected material rather than rewriting the prose itself.

Use review when you want editorial findings instead of a rewrite. It returns findings with locations, or reports that the post has no significant editorial problems.

The check matters most for first person. The writing model may only recount experiences you actually supplied; the agent verifies that nothing in your voice was invented, the way it fact-checks commands and links.

blogwriter-mcp writes tutorials, explainers, opinion pieces, stories, announcements, and retrospectives. The first line of every post is its title as a # heading; keep it, or move it into your blog's front matter.

Other MCP hosts

The server is the npm package blogwriter-mcp. Run it as npx -y blogwriter-mcp@latest with OPENAI_API_KEY in its environment.

Claude Code project configuration

For Claude Code without the plugin, add the server to .mcp.json:

{
  "mcpServers": {
    "blogwriter": {
      "command": "npx",
      "args": ["-y", "blogwriter-mcp@latest"]
    }
  }
}

Codex

For Codex, add the server to ~/.codex/config.toml:

[mcp_servers.blogwriter]
command = "npx"
args = ["-y", "blogwriter-mcp@latest"]

Give it your voice

Configuration is optional. Without .blogwriter-mcp/, the server uses its editorial brief and a default model.

Add examples and writing rules when you want posts that sound like you:

.blogwriter-mcp/
  config.toml       model choice, voice corpus globs
  instructions.md   your house style, in your words
  voice/
    examples/       posts that sound the way you want
    avoid/          counterexamples of the style you keep deleting
[model]
model = "gpt-5.6-terra"

[voice]
include = ["posts/**/*.md"]
exclude = ["posts/drafts/**"]

Files in voice/ and files matched by include become the voice corpus. A few strong examples usually teach the model more than a long instructions file. Pre-AI posts make the best examples; if your published posts are AI-written, adding them to include teaches the model that same voice. AI originals recovered from git history can go in voice/avoid/.

The corpus is capped at max_kb, which defaults to 256 KB. The server reports files it drops for the budget. The corpus is sent with every request and uses the provider's prompt cache, so it is nearly free after the first call of a session. Set BLOGWRITER_MCP_DEBUG=1 to print input, cached, and output token counts to stderr.