calculate_sum
Add two numbers together using the MCP Server. Input values 'a' and 'b' to get the sum quickly and accurately.
Instructions
Add two numbers together
Input Schema
Name | Required | Description | Default |
---|---|---|---|
a | Yes | ||
b | Yes |
Input Schema (JSON Schema)
{
"properties": {
"a": {
"type": "number"
},
"b": {
"type": "number"
}
},
"required": [
"a",
"b"
],
"type": "object"
}