MCP Learning Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| WEATHER_API_KEY | No | API key for OpenWeatherMap (required for get_weather tool) |
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 |
|---|---|
| calculatorA | Performs basic arithmetic (add, subtract, multiply, divide) on two numbers. |
| uuid_generatorA | Generates a list of random UUIDs (v4). Accepts a count between 1 and 20. |
| read_notesA | Reads and returns the contents of the local notes.txt file. |
| get_weatherA | Fetches the current temperature, humidity, and condition for a given city. |
| password_generatorB | Generates a random password of a given length, optionally including symbols. |
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 5 tools
All five tools perform entirely distinct and unrelated functions: arithmetic, weather lookup, password generation, note reading, and UUID generation. There is no overlap or confusion between them.
Most tool names follow a clear 'verb_noun' pattern (get_weather, read_notes, uuid_generator, password_generator). 'calculator' is a noun rather than verb_noun, but it is still unambiguous and fits the style.
With 5 tools, the server is well-scoped and not overloaded. Each tool serves a clear, standalone purpose without redundancy.
Each tool is individually complete for its specific function; for example, calculator covers basic arithmetic. However, the tools are disconnected and do not form a coherent domain, so there is no sense of a full surface.