MCP Server Demo
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 |
|---|---|
| addA | Add two numbers. |
| subtractC | Subtract two numbers. |
| multiplyA | Multiply two numbers. |
| divideB | Divide two numbers. |
| word_countB | Count the number of words. |
| uppercaseA | Convert text to uppercase. |
| lowercaseA | Convert text to lowercase. |
| reverse_textA | Reverse a string. |
| current_timeA | Return the current local time. |
| mock_weatherA | Return mock weather information. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| greet_user | Generate a greeting prompt. |
| summarize_prompt | Prompt for summarization. |
| explain_prompt | Prompt for explanation. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| about_project | Information about the project. |
TDQS
Scored across 10 tools
Each tool performs a distinct, non-overlapping operation: arithmetic tools handle basic math, string tools handle text transformations, and time/weather are separate. No two tools could be confused for another.
All tool names use lowercase, verb-first conventions with clear actions (add, subtract, multiply, divide, word_count, uppercase, etc.). Compound names use underscores consistently, maintaining a uniform style.
With 10 tools covering arithmetic, string operations, time, and mock weather, the count is well-scoped for a demo server. Each tool has a clear purpose and none feel redundant or excessive.
The arithmetic set is complete with all four basic operations, and string operations cover common transformations. Missing operations like string concatenation or length are minor gaps for a demo, but the core surface is adequate.