Math-MCP

by EthanHenrickson
Verified

multiply

Multiplies two numbers together

Input Schema

NameRequiredDescriptionDefault
firstFactorYesThe first factor
secondFactorYesThe second factor

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "firstFactor": { "description": "The first factor", "type": "number" }, "secondFactor": { "description": "The second factor", "type": "number" } }, "required": [ "firstFactor", "secondFactor" ], "type": "object" }