esa_delete_post
Remove a specific post from the esa API by providing the post number, enabling efficient content management through the Model Context Protocol.
Instructions
Delete a post
Input Schema
Name | Required | Description | Default |
---|---|---|---|
post_number | Yes | Post number to delete |
Input Schema (JSON Schema)
{
"properties": {
"post_number": {
"description": "Post number to delete",
"type": "number"
}
},
"required": [
"post_number"
],
"type": "object"
}