
Security News
Ruby's Bundler 4.0.18 Extends Cooldown to bundle lock and bundle cache
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.
blogcaster-mcp
Advanced tools
An MCP server for the BlogCaster project - publish, list, and delete posts across multiple blogging platforms
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.
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"]
}
}
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.
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.getTokenManagementLink()publishPost(
title: "My First BlogCaster Demo",
contentMarkdown: "# Hello World\\nPublished via MCP!",
platforms: ["hashnode", "devto", "wordpress"],
coverImageURL: "https://example.com/cover.jpg"
)
getBlogs({ platforms: ["hashnode", "devto", "wordpress"] })
deletePost({ platforms: ["devto", "wordpress"], postId: "12345" })
| Platform | Status | Notes |
|---|---|---|
| Hashnode | ✅ | Cover images ignored (API limitation) |
| Dev.to | ✅ | Cover image URL supported |
| WordPress | ✅ | Supports self-hosted + WordPress.com |
| Medium | 🔜 | Planned |
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.
# 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
MIT License - see LICENSE for details.
Contributions are welcome! Please open an issue or submit a pull request.
FAQs
An MCP server for the BlogCaster project - publish, list, and delete posts across multiple blogging platforms
We found that blogcaster-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.

Company News
Socket is now in the AWS Security Hub Extended plan. Adopt it through AWS, apply committed spend, and block malicious open source packages.