hello-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| say_helloA | Return a friendly greeting for the given name. |
| addA | Add two numbers together. |
| current_timeA | Return the current date and time for an IANA timezone (e.g. 'America/Lima', 'Asia/Tokyo'). Defaults to UTC. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| daily_briefing | Kick off a personalized briefing that exercises the server's tools. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| server_info | Static facts about this server (version, author, capabilities). |
TDQS
Scored across 3 tools
Each tool has a clearly distinct purpose: arithmetic, time retrieval, and greeting. No overlap or ambiguity.
All names use lowercase and underscores, but 'current_time' and 'say_hello' follow a verb_noun pattern while 'add' is a single verb, creating minor inconsistency.
Three tools is well-scoped for a simple utility server, not too few or too many.
The set covers basic arithmetic, time, and greeting needs, but lacks related operations like subtraction or time formatting, leaving minor gaps.