getStory
Retrieve a specific Hacker News story by its unique ID using the Model Context Protocol. Ideal for accessing detailed story data directly through LLM clients.
Instructions
Get a single story by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The ID of the story |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "The ID of the story",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}