Dev.to MCP Server

create_article

Publish or save articles on Dev.to by providing a title, markdown content, tags, and publication status. Streamline content creation and management with this tool.

Instructions

Create and publish a new article on Dev.to Args: title: The title of the article body_markdown: The content of the article in markdown format tags: Comma-separated list of tags (e.g., "python,tutorial,webdev") published: Whether to publish immediately (True) or save as draft (False)

Input Schema

NameRequiredDescriptionDefault
body_markdownYes
publishedNo
tagsNo
titleYes

Input Schema (JSON Schema)

{ "properties": { "body_markdown": { "title": "Body Markdown", "type": "string" }, "published": { "default": false, "title": "Published", "type": "boolean" }, "tags": { "default": "", "title": "Tags", "type": "string" }, "title": { "title": "Title", "type": "string" } }, "required": [ "title", "body_markdown" ], "title": "create_articleArguments", "type": "object" }
ID: 2l9kksn63p