Server data from the Official MCP Registry
Publish content to DEV.to, Hashnode, GitHub Discussions, Reddit, Bluesky, LinkedIn, and Medium.
Publish content to DEV.to, Hashnode, GitHub Discussions, Reddit, Bluesky, LinkedIn, and Medium.
This MCP server distributes content across multiple social platforms with reasonable architecture but has several security concerns. Credentials are properly stored in user-home YAML files rather than hardcoded, and authentication is required for most operations. However, there are missing input validations on file paths, insufficient error handling around credential loading, weak unpublish implementations that could leave state inconsistent, and several unvalidated external API calls that lack rate limiting or timeout protections. Permissions appropriately match the server's purpose (network access, file I/O, environment variables), but the code quality issues and lack of defensive programming bring the security posture below the category baseline. Supply chain analysis found 4 known vulnerabilities in dependencies (0 critical, 3 high severity). Package verification found 1 issue.
7 files analyzed · 16 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: DEV_TO_API_KEY
Environment variable: HASHNODE_TOKEN
Environment variable: HASHNODE_PUBLICATION_ID
Environment variable: GITHUB_TOKEN
Environment variable: GITHUB_DISCUSSION_REPO
Environment variable: REDDIT_CLIENT_ID
Environment variable: REDDIT_CLIENT_SECRET
Environment variable: REDDIT_USERNAME
Environment variable: REDDIT_PASSWORD
Environment variable: BLUESKY_IDENTIFIER
Environment variable: BLUESKY_PASSWORD
Environment variable: DISTRIBUTION_BACKEND
Environment variable: DISTRIBUTION_BACKEND_DIR
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-automatelab-tech-content-distribution": {
"env": {
"GITHUB_TOKEN": "your-github-token-here",
"DEV_TO_API_KEY": "your-dev-to-api-key-here",
"HASHNODE_TOKEN": "your-hashnode-token-here",
"REDDIT_PASSWORD": "your-reddit-password-here",
"REDDIT_USERNAME": "your-reddit-username-here",
"BLUESKY_PASSWORD": "your-bluesky-password-here",
"REDDIT_CLIENT_ID": "your-reddit-client-id-here",
"BLUESKY_IDENTIFIER": "your-bluesky-identifier-here",
"DISTRIBUTION_BACKEND": "your-distribution-backend-here",
"REDDIT_CLIENT_SECRET": "your-reddit-client-secret-here",
"GITHUB_DISCUSSION_REPO": "your-github-discussion-repo-here",
"HASHNODE_PUBLICATION_ID": "your-hashnode-publication-id-here",
"DISTRIBUTION_BACKEND_DIR": "your-distribution-backend-dir-here"
},
"args": [
"-y",
"@automatelab/content-distribution-mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
Publish your content everywhere—without rewriting for every platform.
A Model Context Protocol server that distributes a single piece of content across 8+ channels (DEV.to, Hashnode, GitHub Discussions, Reddit, Bluesky, LinkedIn, Medium, Twitter) with automatic platform-specific adaptation, idempotent publishing, per-community anti-spam rules, and centralized state management.
Creating and publishing content at scale is friction-heavy:
This MCP handles distribution complexity. Write your core message once, generate platform-specific variants, publish everywhere safely.
No LLM calls inside. No walled-in agents. Just a clean API for multi-platform content distribution at scale.
npx @automatelab/content-distribution-mcp
Or add it permanently to your MCP host.
Claude Code — add to .claude/mcp.json:
{
"mcpServers": {
"content-distribution": {
"command": "npx",
"args": ["-y", "@automatelab/content-distribution-mcp"]
}
}
}
Claude Desktop — add to claude_desktop_config.json:
{
"mcpServers": {
"content-distribution": {
"command": "npx",
"args": ["-y", "@automatelab/content-distribution-mcp"]
}
}
}
n8n — use the MCP Client node, point it at npx @automatelab/content-distribution-mcp over stdio.
Cursor / Windsurf / any MCP host — same npx -y content-distribution-mcp pattern.
The server reads credentials from a Distribution Profile stored in ~/.distribution-mcp/profiles.yaml:
# ~/.distribution-mcp/profiles.yaml
default:
credentials:
DEV_TO_API_KEY: "your-devto-api-key"
HASHNODE_TOKEN: "your-hashnode-token"
HASHNODE_PUBLICATION_ID: "your-pub-id"
GITHUB_TOKEN: "ghp_..."
GITHUB_DISCUSSION_REPO: "owner/repo"
REDDIT_CLIENT_ID: "..."
REDDIT_CLIENT_SECRET: "..."
REDDIT_USERNAME: "..."
REDDIT_PASSWORD: "..."
BLUESKY_IDENTIFIER: "you.bsky.social"
BLUESKY_PASSWORD: "..."
subreddits:
- ClaudeAI
- LocalLLaMA
Only set credentials for channels you intend to use. LinkedIn, Medium, and Twitter/X return needs_browser with a compose URL — no credentials needed.
Eight tools, dot-notation names form a navigable tree (post.*, channel.*, profile.*, subreddit.*). Every tool declares an outputSchema (callers can type-check responses) and MCP annotations (read-only / destructive / idempotent / open-world hints). No LLM calls inside the server.
| Tool | Purpose |
|---|---|
post.publish | Immediate publish; idempotent on (content.id, channel) |
post.schedule | Queue variants for schedule_at, publish the rest immediately |
post.drain | Fire all scheduled posts due now — run from cron |
post.status | Per-channel state for a content piece or channel |
post.unpublish | Best-effort delete (DEV.to sets unpublished; others vary) |
channel.hints | Per-channel metadata: char limits, Markdown support, tag vocab |
profile.list | Names of configured distribution profiles |
subreddit.list | Subreddit Catalog: cooldowns, flair vocab, last-posted |
v2.2.0 breaking change. Tools were renamed from flat names (
publish,schedule, ...) to dot-notation (post.publish,post.schedule, ...). Update any prompts, agent skills, or n8n nodes that referenced the old names.
| Channel key | Tier | Auth |
|---|---|---|
devto | Auto | DEV_TO_API_KEY |
hashnode | Auto | HASHNODE_TOKEN + HASHNODE_PUBLICATION_ID |
github_discussions | Auto | GITHUB_TOKEN + GITHUB_DISCUSSION_REPO |
reddit | Auto-gated | REDDIT_CLIENT_ID/SECRET/USERNAME/PASSWORD |
bluesky | Auto | BLUESKY_IDENTIFIER + BLUESKY_PASSWORD |
linkedin | Browser fallback | returns needs_browser + compose URL |
medium | Browser fallback | returns needs_browser + compose URL |
twitter / x | Browser fallback | returns needs_browser + compose URL |
// post.publish tool
{
"content": {
"id": "n8n-webhook-setup@2026-05-20",
"title": "How to set up an n8n webhook",
"body_md": "...",
"tags": ["automation", "n8n", "tutorial"],
"canonical_url": "https://yourblog.com/n8n-webhook-setup",
"author": "You"
},
"variants": [
{
"channel": "devto:main",
"title": "How to set up an n8n webhook",
"body": "...",
"tags": ["automation", "n8n", "tutorial", "devops"],
"canonical_url": "https://yourblog.com/n8n-webhook-setup",
"extras": {}
},
{
"channel": "reddit:ClaudeAI",
"title": "Built a webhook automation with n8n",
"body": "Here's how I set it up...",
"tags": [],
"extras": { "flair": "Project" }
}
],
"profile_name": "default"
}
Re-running post.publish with the same content.id + channel pair returns the existing live_url immediately without making another platform API call. Safe to retry on failure.
Variants with schedule_at (ISO-8601 with timezone, e.g. "2026-05-21T09:00:00+00:00") are stored in ~/.distribution-mcp/scheduled.yaml and fired on the next post.drain call. Run drain from cron:
# fire due posts every 5 minutes
*/5 * * * * npx -y content-distribution-mcp drain
Or call the post.drain MCP tool directly from an agent.
| Variable | Default | Purpose |
|---|---|---|
DISTRIBUTION_BACKEND | yaml | State backend (yaml only in v1) |
DISTRIBUTION_BACKEND_DIR | ~/.distribution-mcp | Directory for YAML state files |
Agent (Claude Code / n8n / Cursor / any MCP host)
│ generates per-channel copy, calls MCP tools
▼
content-distribution-mcp (this package, stdio transport)
│ no LLM calls — pure I/O
├── adapters/ devto · hashnode · github-discussions · reddit · bluesky · browser
└── backends/ yaml (post log · profiles · schedule queue · subreddit catalog)
No Anthropic-specific code anywhere. Verify:
grep -ri "anthropic" node_modules/content-distribution-mcp/dist/ # returns nothing
MIT
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.