create_article
Generate and publish articles on Dev.to by specifying a title, markdown content, tags, and publication status. Ideal for automating content creation and managing drafts or live posts.
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
Name | Required | Description | Default |
---|---|---|---|
body_markdown | Yes | ||
published | No | ||
tags | No | ||
title | Yes |
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"
}