esa_get_post
Retrieve detailed information about a specific post by specifying its post number and optionally including related data like comments or stargazers via the esa MCP Server interface.
Instructions
Get detailed information about a specific post
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include | No | Related data to include in the response (e.g. 'comments,stargazers') | |
post_number | Yes | Post number to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"include": {
"description": "Related data to include in the response (e.g. 'comments,stargazers')",
"type": "string"
},
"post_number": {
"description": "Post number to retrieve",
"type": "number"
}
},
"required": [
"post_number"
],
"type": "object"
}