getUser
Retrieve detailed user profile information from Hacker News by specifying a username. This tool integrates with MCP Hacker News to fetch live data efficiently.
Instructions
Get user profile information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
username | Yes | The username to look up |
Input Schema (JSON Schema)
{
"properties": {
"username": {
"description": "The username to look up",
"type": "string"
}
},
"required": [
"username"
],
"type": "object"
}