esa_list_comments
Retrieve a list of comments for a specific post by specifying the post number, page, and results per page, using the esa MCP Server.
Instructions
Get a list of comments for a post
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | Page number to retrieve | |
per_page | No | Number of results per page (default: 20, max: 100) | |
post_number | Yes | Post number to get comments for |
Input Schema (JSON Schema)
{
"properties": {
"page": {
"default": 1,
"description": "Page number to retrieve",
"type": "number"
},
"per_page": {
"default": 20,
"description": "Number of results per page (default: 20, max: 100)",
"type": "number"
},
"post_number": {
"description": "Post number to get comments for",
"type": "number"
}
},
"required": [
"post_number"
],
"type": "object"
}