getUser
Retrieve a user profile by ID on Hacker News using the Hacker News MCP Server. Simplify access to user data for integration with LLM clients.
Instructions
Get a user profile by ID
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"
}