subtract
Calculate the difference by subtracting the second number from the first using this tool. Ideal for mathematical operations in the BuildMcpServer framework.
Instructions
Subtract the second number from the first.
Args: a: Number to subtract from b: Number to subtract
Returns: The result of a - b
Input Schema
Name | Required | Description | Default |
---|---|---|---|
a | Yes | ||
b | Yes |
Input Schema (JSON Schema)
{
"properties": {
"a": {
"title": "A",
"type": "number"
},
"b": {
"title": "B",
"type": "number"
}
},
"required": [
"a",
"b"
],
"title": "subtractArguments",
"type": "object"
}