multiply
Calculates the product of two numbers. Use this tool for multiplication within the Calculator MCP Server.
Instructions
Multiply two numbers together
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| a | Yes | First number | |
| b | Yes | Second number |
Calculates the product of two numbers. Use this tool for multiplication within the Calculator MCP Server.
Multiply two numbers together
| Name | Required | Description | Default |
|---|---|---|---|
| a | Yes | First number | |
| b | Yes | Second number |
Changes observed during successful MCP inspections.
v1.0.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the behavioral burden. It clearly indicates a pure arithmetic operation, but it does not mention return behavior, edge cases, or any potential side effects. For a simple multiplication tool, this is adequate but not rich.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, tightly written sentence with no redundant explanation. It is appropriately sized for the simplicity of the operation and is immediately understandable.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simplicity of a two-number multiplication, the description plus schema is sufficient for an agent to invoke the tool. There is no output schema, but the result is naturally inferable from the operation described.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents both parameters clearly. The description adds no additional meaning beyond what the parameter names and descriptions provide.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states the operation ('multiply') and the target ('two numbers'), which is clear and specific. It doesn't explicitly differentiate from siblings like add, subtract, and divide, but the operation itself is unambiguous enough for selection.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no guidance about when to use this tool versus the sibling tools. The description simply states what it does, leaving the agent to infer that it should be used when multiplication is needed.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.