Skip to main content
Glama

hosted-hello-mcp

Server Details

A deliberately tiny, risk-free MCP server for learning how MCP directory listings work.

Repository: https://github.com/mikej345/hello-mcp

No network calls, no API keys, no user data. Every tool is read-only and pure. Runs over both MCP transports: stdio (for "runs from source" listings) and Streamable HTTP (for "hosted endpoint" listings).

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP · MCP 2025-11-25
URL

TDQS

A4.2/5.0

Scored across 3 tools

Disambiguation5/5

add_numbers, get_rule_of_thumb, and get_server_time each cover a completely different operation: arithmetic, random advice, and time/health. There is no overlap or plausible way to confuse one tool with another.

Naming Consistency5/5

All three tools follow a consistent snake_case verb_noun pattern: add_numbers, get_rule_of_thumb, get_server_time. The verbs clearly indicate the action and the nouns clearly identify the target, making the set predictable.

Tool Count4/5

Three tools is a reasonable, small size for a demo-style server and avoids bloat. However, the operations are unrelated, so the set feels more arbitrary than intentionally curated.

Completeness3/5

There is no coherent domain or lifecycle against which to judge completeness; the tools are isolated, self-contained utilities. For a server named 'hello,' the lack of a greeting or hello-style operation is also a notable gap.

Available Tools

3 tools
add_numbersA
Read-onlyIdempotent
Inspect

Add two numbers and return the sum.

ParametersJSON Schema
NameRequiredDescriptionDefault
aYesThe first number to add, e.g. 2 or -3.5.
bYesThe second number to add, e.g. 3 or 10.25.

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.9/5.0
Behavior3/5

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

It discloses a pure computation with no side effects, which is consistent with the annotations (readOnlyHint=true, idempotentHint=true, destructiveHint=false). It adds no extra behavioral context beyond those annotations, so the bar is met without being exceeded.

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?

A single, clear, front-loaded sentence with no wasted words. It communicates the operation and result immediately.

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

Completeness5/5

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

Given the simple pure-function nature, complete schema with 100% coverage, comprehensive annotations, and an output schema, the description is fully sufficient. No additional context is needed for an agent to call this tool correctly.

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% and both parameters already include detailed descriptions and examples. The tool description only repeats 'two numbers,' adding no meaningful semantics beyond the schema, so baseline 3 is appropriate.

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 states a specific verb ('add'), the resource ('two numbers'), and the outcome ('return the sum'). It fully explains what the tool does and is clearly distinct from the unrelated sibling tools.

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

Usage Guidelines3/5

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

The description implies use whenever a sum of two numbers is needed, but it does not explicitly discuss when to use this tool versus alternatives or mention any exclusions. For a trivial arithmetic utility, the implied usage is adequate but not explicit.

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

get_rule_of_thumbA
Read-only
Inspect

Return one random engineering rule of thumb. Takes no input and has no side effects.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false)Skip, and the description adds that the tool is random and has no side effects, reinforcing the safe, read-only nature. It also clarifies the 'no input' constraint, which goes beyond the schema. No contradictions with annotations.

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 sentence that delivers the core purpose and side-effect profile without any fluff. Both key facts are front-loaded and every word earns its place.

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

Completeness5/5

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

Given the zero-parameter schematok/contexts, an output schema exists, and sibling tools are unrelated, the description covers everything an agent needs. The tool's behavior is fully described by its randomness and lack of side effects.

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

Parameters4/5

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

The tool has zero parameters alerting schema coverage is effectively 100%. The description explicitly states 'takes no input,' providing a clear semantic confirmation beyond the empty schema object. Per the rubric, a score of 4 is appropriate for no-parameter tools.

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 states a clear, specific verb and resource: 'Return one random engineering rule of thumb.' This fully differentiates it from sibling tools like add_numbers and get_server_time, which perform entirely different functions.

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 clearly conveys the contexts in which the tool is useful: when a random engineering heuristic is needed. It explicitly notes that no input is required and there are no side effects, but does not describe any exclusion criteria or alternative tools, though none are necessary given the distinct purpose.

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

get_server_timeA
Read-only
Inspect

Return the server's current time in UTC (ISO 8601). Useful for checking the server is alive.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, and the description confirms read-only behavior ('Return'). It adds the return format (UTC ISO 8601), which is useful context. No side effects described, but none are implied by the tool's nature. The description is consistent with annotations.

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?

Extremely concise: one sentence stating the action and format, followed by a short usage hint. Information is front-loaded and every word earns its place. No fluff.

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

Completeness5/5

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

For a zero-parameter read-only tool with an output schema present (has_output_schema: true), the description is fully sufficient. It tells what the tool returns (UTC ISO 8601) and why to use it (aliveness check). Nothing missing for correct invocation.

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

Parameters4/5

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

Tool has zero parameters, so the description need not explain any. The baseline for 0 params is 4, and the description does not add or need parameter details. Schema coverage is 100% (no params).

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?

States a specific verb ('Return') and a precise resource ('server's current time in UTC (ISO 8601)'). Clearly distinct from siblings like add_numbers and get_rule_of_thumb, which have unrelated purposes. No ambiguity.

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?

Explicitly suggests a use case: 'Useful for checking the server is alive.' This gives clear context for when to call the tool. Does not discuss alternatives, but given the tool's simplicity and unrelated siblings, no exclusion is needed.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 3 tool updates
    • First observedadd_numbers
    • First observedget_rule_of_thumb
    • First observedget_server_time

Related MCP Servers

  • A
    license
    A
    quality
    C
    maintenance
    Enables brand visibility monitoring across major AI platforms like ChatGPT, Claude, Gemini, and Perplexity. It allows users to track visibility scores, analyze competitor data, and receive actionable insights to improve AI-generated brand recommendations.
    16
    7 npm
    1
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Enables tracking competitor websites, changelogs, blog feeds, and pricing pages with meaningful diffs, classification, and Markdown digests via MCP tools for listing, adding, removing competitors, running checks, and retrieving digests or changes.
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Browse IndustryLens's published competitive-intelligence reports and head-to-head competitor comparisons from any AI agent — real, source-backed data.
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources