Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

An MCP server for the BlogCaster project.

README.md

🚀 BlogCaster MCP — Your Blog Ecosystem, One MCP Server

![MCP Registry](https://registry.modelcontextprotocol.io) ![NPM Version](https://www.npmjs.com/package/blogcaster-mcp) ![License](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: ``json { "mcpServers": { "blogcaster": { "command": "npx", "args": ["-y", "blogcaster-mcp"] } } } ``

Cursor / Cline: ``json { "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: ``json { "mcpServers": { "blogcaster": { "command": "npx", "args": ["-y", "mcp-remote", "https://blogcaster-mcp.rrpb2580.workers.dev/mcp"] } } } ``

Cursor / Cline: ``json { "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

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Other servers.