get_draft_detail
Retrieve detailed information about a specific draft by providing its ID. This tool is used for accessing and managing draft content in the Emlog blog system via the MCP server.
Instructions
Get details of a specific draft
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The ID of the draft to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "The ID of the draft to retrieve",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}