multiply
Perform floating-point multiplication operations with precision using Calculator MCP. Input two numbers to multiply and obtain the accurate result.
Instructions
执行浮点数乘法运算
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": "multiplyArguments",
"type": "object"
}