esa MCP Server

by kajirita2002
Verified

esa_update_post

Update an existing post

Input Schema

NameRequiredDescriptionDefault
body_mdNoNew body for the post (Markdown format)
categoryNoNew category for the post
created_byNoPoster's screen_name (only team owners can specify)
messageNoChange message
nameNoNew title for the post
original_revisionNoRevision to base the update on
post_numberYesPost number to update
tagsNoNew list of tags for the post
wipNoWhether to mark as WIP (Work In Progress)

Input Schema (JSON Schema)

{ "properties": { "body_md": { "description": "New body for the post (Markdown format)", "type": "string" }, "category": { "description": "New category for the post", "type": "string" }, "created_by": { "description": "Poster's screen_name (only team owners can specify)", "type": "string" }, "message": { "description": "Change message", "type": "string" }, "name": { "description": "New title for the post", "type": "string" }, "original_revision": { "description": "Revision to base the update on", "type": "string" }, "post_number": { "description": "Post number to update", "type": "number" }, "tags": { "description": "New list of tags for the post", "items": { "type": "string" }, "type": "array" }, "wip": { "description": "Whether to mark as WIP (Work In Progress)", "type": "boolean" } }, "required": [ "post_number" ], "type": "object" }