MCP Server Template
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 |
|---|---|
| reverse_stringA | Reverse a given string |
| addB | Add two integers |
| subtractA | Subtract the second integer from the first |
| multiplyB | Multiply two integers |
| divideB | Divide the first integer by the second |
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
Each tool has a clear and distinct purpose. The arithmetic tools (add, subtract, multiply, divide) are well-differentiated, and reverse_string operates on an entirely different domain.
All tool names follow a consistent pattern: simple, lowercase, with underscores for multi-word names (reverse_string). No mixed styles or confusing abbreviations.
Five tools is a reasonable count for a small utility server. It's neither too few to be useful nor too many to manage.
The arithmetic set covers basic operations but misses common ones like modulus or exponentiation. The string domain has only one operation, leaving gaps for typical string manipulations.