mcp-hello-typescript-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| HOST | No | Bind address for http transport | 127.0.0.1 |
| PORT | No | Bind port for http transport | 8000 |
| APP_NAME | No | Name reported by server_info | mcp-hello-typescript-server |
| MCP_TRANSPORT | No | Transport mode: stdio or http | stdio |
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": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| server_infoA | Health/status of the server: app name, version, uptime, and supported greeting languages. |
| greetA | Return a friendly greeting in the requested language (default English). language accepts a language name, alternate spelling, or ISO code (english, spanish, french, german, italian, portuguese, japanese, hawaiian). Optional name personalizes the message. Returns {language, greeting, message}. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 2 tools
The two tools serve entirely different purposes: one for generating greetings and one for server health. There is no overlap or ambiguity.
Both names use snake_case, but 'greet' is a verb while 'server_info' is a noun, breaking a strict verb_noun pattern. Still, the style is consistent and readable.
With only 2 tools, the server feels minimal. For a greeting-focused server, this might suffice, but it borders on too few for a typical MCP server scope.
The tools cover the core functionality (greeting and server info) with no obvious gaps. However, a dedicated tool to list supported languages could be considered a minor missing piece.