MCP Calc Tools

solve

Solve an equation for a variable

Input Schema

NameRequiredDescriptionDefault
expressionYesEquation to solve (e.g., "x^2 = 4")
variableYesVariable to solve for

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": true, "properties": { "expression": { "description": "Equation to solve (e.g., \"x^2 = 4\")", "type": "string" }, "variable": { "description": "Variable to solve for", "type": "string" } }, "required": [ "expression", "variable" ], "type": "object" }