Dev.to Blog Publisher MCP Server
Provides a tool to publish markdown articles to Dev.to, with support for drafts, live publishing, tags, series, canonical URL, and cover image.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Dev.to Blog Publisher MCP ServerPublish blog.txt to Dev.to as a draft with tags: mcp, ai"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Dev.to Blog Publisher MCP Server
A custom Model Context Protocol (MCP) server that lets Claude publish markdown blog posts directly to Dev.to — no copy-pasting into the Dev.to editor required.
Built with FastMCP and the Dev.to API.
Overview
This server exposes a single MCP tool, publish_blog_to_devto, which any MCP-compatible client (like Claude Desktop) can call to create an article on your Dev.to account. Pair it with the official filesystem MCP server and you can ask Claude to:
"Read
blog.txtfrom my drafts folder, refine the content, and publish it to Dev.to as a draft with relevant tags."
Claude reads the file, cleans up the writing, and calls this server to publish it — all in one conversation, no manual formatting.
Related MCP server: cnblogs-mcp
Features
Publish articles as drafts or live
Set title, tags, series, canonical URL, and cover image
Uses your personal Dev.to API key — the key never leaves your machine except to call Dev.to's own API
Requirements
Python 3.10+
uvfor package managementA Dev.to API key (Settings → Extensions → DEV Community API Keys)
Claude Desktop or another MCP-compatible client
Setup
1. Clone and install dependencies
git clone https://github.com/Dineshv0311/devto-mcp-server.git
cd devto-mcp-server
uv sync2. Configure your API key
Copy the template and fill in your key:
cp .env.template .envThen edit .env:
DEVTO_API_KEY=your_devto_api_key_here⚠️
.envis listed in.gitignore— never commit your real API key.
3. Test the server standalone (recommended)
Before wiring it into Claude Desktop, verify the server works using the MCP Inspector:
uv run mcp dev dev-server.pyThis opens a local web UI where you can call publish_blog_to_devto directly and inspect the raw request/response — useful for catching issues before debugging through a chat interface.
4. Connect it to Claude Desktop
Open your Claude Desktop config file:
Windows:
%APPDATA%\Claude\claude_desktop_config.jsonmacOS:
~/Library/Application Support/Claude/claude_desktop_config.json
Add this server inside the top-level mcpServers key:
{
"mcpServers": {
"devto": {
"command": "C:\\path\\to\\uv.exe",
"args": ["--directory", "C:\\path\\to\\devto-mcp-server", "run", "dev-server.py"]
}
}
}💡 On Windows, use the full path to
uv.exe(find it withwhere.exe uv) — Claude Desktop doesn't always inherit your shell's PATH.
Fully quit and reopen Claude Desktop (check it's not lingering in the system tray) and confirm the server shows as running under Settings → Developer → Local MCP servers.
Usage
Once connected, talk to Claude normally:
"I have a file
blog.txtin my drafts folder — refine its content and publish it to Dev.to as a draft with tags: mcp, ai, python."
Tool: publish_blog_to_devto
Parameter | Required | Description |
| ✅ | Article title |
| ✅ | Full article content in markdown |
| ❌ | List of tags (e.g. |
| ❌ |
|
| ❌ | Name of the series this article belongs to |
| ❌ | Canonical URL if cross-posted |
| ❌ | URL of a cover image |
Tip: publish with published: false first to review the draft on Dev.to before making it live.
Project Structure
devto-mcp-server/
├── dev-server.py # MCP server + publish_blog_to_devto tool
├── devto-test.py # Standalone test script for the Dev.to API call
├── example-config.json # Example Claude Desktop config snippet
├── .env.template # Template for required environment variables
├── pyproject.toml # Project dependencies (managed by uv)
└── README.mdTroubleshooting
ModuleNotFoundError: No module named 'mcp.server.fastmcp'
There's an unrelated package squatting the mcp name on PyPI. Pin the real SDK explicitly:
uv remove mcp
uv add "mcp[cli]>=1.2.0,<2.0.0"Server doesn't show up in Claude Desktop
Double-check devto is nested inside mcpServers in the config, not a sibling key. Fully restart Claude Desktop.
uv not found after installing
Close and reopen your terminal so it picks up the updated PATH.
Dev.to API returns 422 Unprocessable Entity Usually means a duplicate title/slug already exists on your account. Try a slightly different title.
License
MIT — see LICENSE
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- Alicense-qualityDmaintenanceEnables publishing blog posts directly to Dev.to through the Model Context Protocol, allowing seamless content creation and publication via natural language interactions.Last updatedMIT
- Flicense-qualityDmaintenanceEnables publishing Markdown blog posts to cnblogs.com via MCP protocol using natural language.Last updated
- Flicense-qualityDmaintenanceEnables AI assistants to publish blog posts directly to Dev.to via the Model Context Protocol.Last updated1
- Flicense-qualityCmaintenanceProvides MCP tools to interact with Dev.to, enabling searching, browsing, and publishing articles through natural language.Last updated
Related MCP Connectors
Publish AI-generated HTML & Markdown to a hosted, shareable URL via MCP.
Markdown utilities MCP.
MCP-native collaborative markdown editor with real-time AI document editing
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Dineshv0311/devto-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server