Calculator MCP
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 | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| addA | Add two numbers |
| divC | Divide two numbers |
| modC | Mod two numbers |
| mulB | Multiply two numbers |
| sqrtC | Square root of a number |
| subC | Subtract two numbers |
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 6 tools
Each tool performs a distinct mathematical operation with no overlap. An agent can easily choose the correct tool based on the operation name.
All tool names follow a consistent lowercase, single-word operator pattern (add, sub, mul, div, mod, sqrt). The naming is uniform and predictable.
Six tools cover the essential arithmetic operations for a calculator server without unnecessary bulk. The scope is tight and well-matched to the domain.
Core arithmetic operations are fully covered, including square root and modulo. A power/exponent operation could be a minor addition, but the current set handles typical calculator workflows without dead ends.