post_qiita_article
Publish articles on Qiita with customizable options for title, content, tags, privacy, and more. Streamline content sharing using a standardized MCP tool for efficient publishing.
Instructions
create a new article on Qiita
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | Yes | Markdown formatted content | |
organization_url_name | No | The url_name of the organization for the article | |
private | No | Whether the article is private | |
slide | No | Whether to enable slide mode | |
tags | Yes | List of tags for the article | |
title | Yes | Article title | |
tweet | No | Whether to post to Twitter |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"body": {
"description": "Markdown formatted content",
"type": "string"
},
"organization_url_name": {
"description": "The url_name of the organization for the article",
"type": "string"
},
"private": {
"default": true,
"description": "Whether the article is private",
"type": "boolean"
},
"slide": {
"description": "Whether to enable slide mode",
"type": "boolean"
},
"tags": {
"description": "List of tags for the article",
"items": {
"additionalProperties": false,
"properties": {
"name": {
"description": "Tag name",
"type": "string"
},
"versions": {
"description": "Versions (optional)",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"name"
],
"type": "object"
},
"type": "array"
},
"title": {
"description": "Article title",
"type": "string"
},
"tweet": {
"description": "Whether to post to Twitter",
"type": "boolean"
}
},
"required": [
"title",
"body",
"tags"
],
"type": "object"
}