get_comments
Retrieve paginated comments for a specific article using the article ID. Supports managing and accessing blog comments efficiently within the Emlog MCP Server.
Instructions
Get comments for an article (with pagination support)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The ID of the article | |
page | No | Page number for paginated comments (requires backend pagination enabled) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "The ID of the article",
"type": "number"
},
"page": {
"description": "Page number for paginated comments (requires backend pagination enabled)",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}