Qiita MCP Server

by 2bo

update_qiita_article

Modify an existing Qiita article by updating its title, content, tags, privacy settings, organization association, or slide mode using a structured input schema.

Instructions

update an existing Qiita article

Input Schema

NameRequiredDescriptionDefault
bodyYesMarkdown formatted content
item_idYesThe ID of the article to update
organization_url_nameNoThe url_name of the organization for the article
privateNoWhether the article is private
slideNoWhether to enable slide mode
tagsNoList of tags for the article
titleYesArticle title

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "body": { "description": "Markdown formatted content", "type": "string" }, "item_id": { "description": "The ID of the article to update", "type": "string" }, "organization_url_name": { "description": "The url_name of the organization for the article", "type": "string" }, "private": { "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" } }, "required": [ "item_id", "title", "body" ], "type": "object" }

You must be authenticated.

Other Tools from Qiita MCP Server

Related Tools

ID: hg7w6itowi