add
Calculate the sum of two numbers to perform basic mathematical addition operations.
Instructions
Add two numbers together.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| a | Yes | ||
| b | Yes |
Implementation Reference
- server.py:73-76 (handler)The handler function for the 'add' tool, which adds two floating-point numbers. Registered via @mcp.tool() decorator.@mcp.tool() def add(a: float, b: float) -> float: """Add two numbers together.""" return a + b