get_post
Retrieve detailed information and metadata for a specific HackerNews post, with optional access to its comments, using the MCP server interface.
Instructions
Get comprehensive details about a HackerNews post including metadata and comments
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | ||
includeComments | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"type": "number"
},
"includeComments": {
"default": false,
"type": "boolean"
}
},
"required": [
"id"
],
"type": "object"
}