calculate
Process mathematical expressions instantly to compute results. Input an expression as a string (e.g., "2 + 2" or "sin(30)") and receive the calculated output, designed for integration with automated workflows or AI agents.
Instructions
Calculate the result of a mathematical expression. Args: expression: A mathematical expression as a string (e.g. "2 + 2", "sin(30)")
Input Schema
Name | Required | Description | Default |
---|---|---|---|
expression | Yes |
Input Schema (JSON Schema)
{
"properties": {
"expression": {
"title": "Expression",
"type": "string"
}
},
"required": [
"expression"
],
"title": "calculateArguments",
"type": "object"
}