MCP Multi-Tool Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| HOST | No | Host address for SSE transport | 0.0.0.0 |
| PORT | No | Port number for SSE transport | 8000 |
| TRANSPORT | No | Transport mode: stdio or sse | 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
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| addB | |
| subtractA | |
| multiplyA | |
| divideA | |
| powerA | |
| square_rootA | |
| factorialA | |
| calculate_percentageA | |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| meeting_summary | Meeting Summary prompt that loads a Markdown template and fills placeholders. Placeholders supported in the template: - {{ meeting_date }} - {{ meeting_title }} - {{ transcript }} |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| get_typescript_sdk_documentation | Get the TypeScript SDK MCP documentation. Returns the full content of the TypeScript SDK MCP markdown documentation file. |
TDQS
Scored across 8 tools
Each tool has a clearly distinct mathematical operation with no overlap in purpose. The descriptions precisely define their specific functions (e.g., add vs. subtract vs. multiply), making misselection unlikely.
Most tools use clear verb-based names (add, subtract, multiply, divide, power, factorial) with one deviation (calculate_percentage uses a verb_noun pattern). All names are descriptive and follow a readable convention, though not perfectly uniform.
With 8 tools, this is well-scoped for a basic mathematical operations server. Each tool earns its place by covering fundamental arithmetic and common functions without being excessive or too sparse.
The set covers core arithmetic (add, subtract, multiply, divide) and key functions (power, square_root, factorial, percentage), but lacks operations like modulus, logarithms, or trigonometric functions that might be expected in a comprehensive math toolkit.