subtract
Perform subtraction by subtracting the subtrahend from the minuend using the Math-MCP server. Input two numbers to get the accurate result of the operation.
Instructions
Subtracts the second number from the first number
Input Schema
Name | Required | Description | Default |
---|---|---|---|
minuend | Yes | The number to subtract from (minuend) | |
subtrahend | Yes | The number being subtracted (subtrahend) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"minuend": {
"description": "The number to subtract from (minuend)",
"type": "number"
},
"subtrahend": {
"description": "The number being subtracted (subtrahend)",
"type": "number"
}
},
"required": [
"minuend",
"subtrahend"
],
"type": "object"
}