hn_get_user
ActiveTool of @cyanheads/hn-mcp-server
declared in 0.5.11
Get an HN user profile with karma, about, and optionally their most recent submissions resolved into full items.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"username"
],
"properties": {
"username": {
"type": "string",
"minLength": 1,
"description": "HN username. Case-sensitive."
},
"submissionCount": {
"type": "number",
"default": 10,
"maximum": 50,
"minimum": 1,
"description": "Number of recent submissions to resolve. Only used when includeSubmissions is true."
},
"includeSubmissions": {
"type": "boolean",
"default": false,
"description": "Resolve the user's most recent submissions into full items. Without this, only the submission count is available."
}
}
}Parent server
@cyanheads/hn-mcp-server
https://github.com/cyanheads/hn-mcp-server
2/7 registries