calculate
Evaluate math expressions directly using the tool on my-mcp-server. Input any valid equation like '2 + 2' to get instant results for basic calculations.
Instructions
Perform basic math calculations
Input Schema
Name | Required | Description | Default |
---|---|---|---|
expression | Yes | Math expression to evaluate (e.g., '2 + 2') |
Input Schema (JSON Schema)
{
"properties": {
"expression": {
"description": "Math expression to evaluate (e.g., '2 + 2')",
"type": "string"
}
},
"required": [
"expression"
],
"type": "object"
}