subtract
Perform subtraction of two integer values on the Example MCP Server. Enter numerical inputs 'A' and 'B' to calculate the difference.
Instructions
Subtract two numbers
Input Schema
Name | Required | Description | Default |
---|---|---|---|
a | Yes | ||
b | Yes |
Input Schema (JSON Schema)
{
"properties": {
"a": {
"title": "A",
"type": "integer"
},
"b": {
"title": "B",
"type": "integer"
}
},
"required": [
"a",
"b"
],
"type": "object"
}