Dev.to MCP Server

update_article

Modify existing Dev.to articles by updating the title, content in markdown format, tags, or publish status using the article ID.

Instructions

Update an existing article on Dev.to Args: article_id: The ID of the article to update title: New title for the article (optional) body_markdown: New content in markdown format (optional) tags: New comma-separated list of tags (optional) published: Change publish status (optional)

Input Schema

NameRequiredDescriptionDefault
article_idYes
body_markdownNo
publishedNo
tagsNo
titleNo

Input Schema (JSON Schema)

{ "properties": { "article_id": { "title": "Article Id", "type": "integer" }, "body_markdown": { "default": null, "title": "Body Markdown", "type": "string" }, "published": { "default": null, "title": "Published", "type": "boolean" }, "tags": { "default": null, "title": "Tags", "type": "string" }, "title": { "default": null, "title": "Title", "type": "string" } }, "required": [ "article_id" ], "title": "update_articleArguments", "type": "object" }

You must be authenticated.

Other Tools from Dev.to MCP Server

Related Tools

ID: 2l9kksn63p