Skip to main content
Glama

Server Details

Hacker News MCP — search and retrieve stories from Hacker News

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
pipeworx-io/mcp-hackernews
GitHub Stars
0

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsB

Average 3.2/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: get_item retrieves a specific item by ID, get_top_stories fetches the current top stories list, and search_hn performs keyword searches. There is no overlap in functionality, making it easy for an agent to select the right tool.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (get_item, get_top_stories, search_hn), using snake_case throughout. The naming is predictable and readable, with no deviations in style.

Tool Count4/5

Three tools are reasonable for a Hacker News server, covering core operations like retrieving items, top stories, and search. However, it feels slightly thin as it lacks tools for user profiles, comments, or updates, which might be expected in a more comprehensive API.

Completeness3/5

The tools cover basic read operations (get and search) but lack update, delete, or user-related functions typical in a full Hacker News API. While agents can work with this for browsing, there are notable gaps like posting comments or accessing user data that limit advanced workflows.

Available Tools

3 tools
get_itemAInspect

Get a single Hacker News item (story or comment) by its numeric ID.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesThe numeric Hacker News item ID
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It clearly indicates a read-only operation ('Get') and specifies the item types ('story or comment'), but doesn't mention potential errors (e.g., for invalid IDs), rate limits, or authentication needs. It adds basic context but lacks detailed behavioral traits.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that front-loads the purpose without unnecessary words. Every part earns its place by specifying the action, resource, type, and identification method concisely.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's low complexity (single parameter, no annotations, no output schema), the description is adequate but has gaps. It covers the basic purpose and parameter intent but lacks details on return values, error handling, or usage nuances, making it minimally viable rather than fully complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema description coverage is 100%, with the parameter 'id' fully documented in the schema. The description adds minimal value by reiterating 'numeric ID' but doesn't provide additional semantics like ID ranges or examples. Baseline 3 is appropriate as the schema handles most parameter documentation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the specific action ('Get'), resource ('a single Hacker News item'), and scope ('story or comment') with precise identification method ('by its numeric ID'). It distinguishes from sibling tools like 'get_top_stories' (which retrieves multiple stories) and 'search_hn' (which searches content).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage context by specifying 'by its numeric ID,' suggesting this tool is for retrieving known items rather than discovering or searching. However, it doesn't explicitly state when not to use it or name alternatives like 'search_hn' for unknown IDs, leaving some guidance implicit rather than explicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_top_storiesCInspect

Get the current top stories from Hacker News.

ParametersJSON Schema
NameRequiredDescriptionDefault
countNoNumber of top stories to return (default: 10)
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool fetches current top stories but doesn't mention any behavioral traits such as rate limits, authentication needs, data freshness, or potential side effects. This leaves significant gaps in understanding how the tool behaves in practice.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, clear sentence that directly states the tool's function without any unnecessary words. It's front-loaded with the core purpose, making it highly efficient and easy to parse, with every word earning its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the lack of annotations and output schema, the description is incomplete. It doesn't address what the tool returns (e.g., story details, format), error conditions, or behavioral aspects like performance or limitations. For a tool with no structured metadata, this minimal description leaves too many contextual gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage, with the 'count' parameter documented as 'Number of top stories to return (default: 10)'. The description doesn't add any meaning beyond this, such as explaining what 'top stories' entails or constraints on the count value. Given the high schema coverage, the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Get') and resource ('current top stories from Hacker News'), making the tool's purpose immediately understandable. However, it doesn't explicitly differentiate from sibling tools like 'get_item' or 'search_hn', which could provide similar content through different mechanisms, so it doesn't reach the highest score.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives like 'get_item' or 'search_hn'. It lacks context about scenarios where top stories are preferred over search results or specific item retrieval, leaving the agent to infer usage without explicit direction.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_hnCInspect

Search Hacker News stories (and other content types) using the Algolia search API.

ParametersJSON Schema
NameRequiredDescriptionDefault
tagsNoContent type filter: story, comment, ask_hn, or show_hn (default: story)
queryYesSearch query string
per_pageNoNumber of results to return (default: 10)
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden but offers minimal behavioral insight. It mentions the Algolia API, hinting at external dependencies, but doesn't disclose rate limits, authentication needs, error handling, or response format. For a search tool with zero annotation coverage, this is a significant gap in transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence with zero wasted words. It front-loads the core purpose ('Search Hacker News stories') and adds clarifying details ('and other content types', 'using the Algolia search API') concisely. Every part earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity of a search operation with no annotations and no output schema, the description is incomplete. It doesn't explain what the tool returns (e.g., list of stories with fields), potential limitations, or error cases. For a tool with 3 parameters and external API reliance, more context is needed to guide effective use.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema fully documents all three parameters. The description adds no additional meaning beyond what the schema provides (e.g., it doesn't explain search syntax or result ordering). Baseline 3 is appropriate when the schema handles parameter documentation effectively.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Search') and resource ('Hacker News stories (and other content types)'), and mentions the underlying API ('Algolia search API'). It distinguishes from 'get_item' (specific item retrieval) and 'get_top_stories' (predefined ranking) by focusing on query-based search. However, it doesn't explicitly contrast with siblings, keeping it at 4 rather than 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives like 'get_item' or 'get_top_stories'. It lacks context about scenarios where search is preferable (e.g., finding specific content vs. browsing top stories) or any prerequisites. This leaves the agent without explicit usage direction.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Discussions

No comments yet. Be the first to start the discussion!

Try in Browser

Your Connectors

Sign in to create a connector for this server.