getItem
Fetch and retrieve specific Hacker News items such as stories, comments, or jobs by their unique ID using the MCP protocol.
Instructions
Get a specific item (story, comment, job, etc.) by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The item ID to fetch |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "The item ID to fetch",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}