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

blogcaster-mcp

v1.0.1

Published

An MCP server for the BlogCaster project - publish, list, and delete posts across multiple blogging platforms

Downloads

20

Readme

🚀 BlogCaster MCP — Your Blog Ecosystem, One MCP Server

MCP Registry NPM Version License

Cloud-hosted MCP server that lets you publish, list, and delete posts across multiple blogging platforms from any MCP-enabled client (Claude Desktop, Cursor/Cline, etc.). No local installs — just point your client at the URL.

Architecture: Secure Session-Based Storage
Tokens are stored encrypted in dedicated, ephemeral Durable Objects. Each chat session gets a unique storage box.


📦 Installation

Option 1: NPM Package (Recommended)

Install via NPM for local stdio transport:

npm install -g blogcaster-mcp

Then configure your MCP client:

Claude Desktop:

{
  "mcpServers": {
    "blogcaster": {
      "command": "npx",
      "args": ["-y", "blogcaster-mcp"]
    }
  }
}

Cursor / Cline:

{
  "blogcaster": {
    "command": "npx",
    "args": ["-y", "blogcaster-mcp"]
  }
}

Option 2: Remote Cloud Endpoint

Use the hosted Cloudflare Worker (no installation required):

MCP Endpoint:

https://blogcaster-mcp.rrpb2580.workers.dev/mcp

Claude Desktop:

{
  "mcpServers": {
    "blogcaster": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://blogcaster-mcp.rrpb2580.workers.dev/mcp"]
    }
  }
}

Cursor / Cline:

{
  "blogcaster": {
    "url": "https://blogcaster-mcp.rrpb2580.workers.dev/mcp"
  }
}

Restart the client after saving the config.


🛠️ Tools you can call

  • getTokenManagementLink()Start here. Generates a secure link to manage your tokens.
  • publishPost(title, contentMarkdown, platforms, coverImageURL?) — publish to one or many blogs.
  • getBlogs(platforms) — list recent posts per platform.
  • deletePost(platforms, postId) — delete by ID on one or many platforms.

🚦 Quickstart flow

1) Setup Tokens (Do this once per session)

  • Ask AI: "Give me the link to manage my tokens"
  • Click the link generated by getTokenManagementLink()
  • Add your platform keys (Hashnode, Dev.to, WordPress) in the secure web portal.

2) Publish a post

publishPost(
  title: "My First BlogCaster Demo",
  contentMarkdown: "# Hello World\\nPublished via MCP!",
  platforms: ["hashnode", "devto", "wordpress"],
  coverImageURL: "https://example.com/cover.jpg"
)

3) List posts

getBlogs({ platforms: ["hashnode", "devto", "wordpress"] })

4) Delete a post by ID

deletePost({ platforms: ["devto", "wordpress"], postId: "12345" })

🌐 Platform support

| Platform | Status | Notes | |------------|--------|-------| | Hashnode | ✅ | Cover images ignored (API limitation) | | Dev.to | ✅ | Cover image URL supported | | WordPress | ✅ | Supports self-hosted + WordPress.com | | Medium | 🔜 | Planned |


❓ FAQ

Do I install anything?
No — everything runs on Cloudflare Workers (remote mode) or via NPM (local mode).

Where are tokens stored?
Secure Durable Object storage scoped to your session.

Does it remember me tomorrow?
Sessions are ephemeral. If you start a new chat, you'll need to link again (this is a security feature).

Can I self-host?
Yes, deploy the Worker and point your MCP client to your URL.

Does BlogCaster store my posts?
Only temporarily to publish; no retention.


🔧 Development

# Clone the repository
git clone https://github.com/BamaCharanChhandogi/BlogCaster-MCP.git
cd BlogCaster-MCP

# Install dependencies
npm install

# Run locally
npm run dev

# Deploy to Cloudflare Workers
npm run deploy

📄 License

MIT License - see LICENSE for details.


🤝 Contributing

Contributions are welcome! Please open an issue or submit a pull request.


🔗 Links