getUserSubmissions
Retrieve a user's submissions on Hacker News by providing their unique ID. This tool enables access to stories and comments shared by the user, integrating with the Hacker News MCP Server for streamlined data retrieval.
Instructions
Get a user's submissions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The ID of the user |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "The ID of the user",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}