esa MCP Server

by kajirita2002
Verified

esa_create_post

Create a new post

Input Schema

NameRequiredDescriptionDefault
body_mdNoPost body (Markdown format)
categoryNoPost category
messageNoChange message
nameYesPost title
tagsNoList of tags for the post
template_post_idNoID of the post to use as a template
userNoPoster's screen_name (only team owners can specify)
wipNoWhether to mark as WIP (Work In Progress)

Input Schema (JSON Schema)

{ "properties": { "body_md": { "description": "Post body (Markdown format)", "type": "string" }, "category": { "description": "Post category", "type": "string" }, "message": { "description": "Change message", "type": "string" }, "name": { "description": "Post title", "type": "string" }, "tags": { "description": "List of tags for the post", "items": { "type": "string" }, "type": "array" }, "template_post_id": { "description": "ID of the post to use as a template", "type": "number" }, "user": { "description": "Poster's screen_name (only team owners can specify)", "type": "string" }, "wip": { "default": true, "description": "Whether to mark as WIP (Work In Progress)", "type": "boolean" } }, "required": [ "name" ], "type": "object" }