calculate
Perform basic mathematical calculations using expressions like '2 + 2' or '10 * 5' on the Algorand MCP Server, facilitating utility tasks within blockchain operations.
Instructions
Perform basic mathematical calculations
Input Schema
Name | Required | Description | Default |
---|---|---|---|
expression | Yes | Mathematical expression to evaluate (e.g., "2 + 2", "10 * 5") |
Input Schema (JSON Schema)
{
"properties": {
"expression": {
"description": "Mathematical expression to evaluate (e.g., \"2 + 2\", \"10 * 5\")",
"type": "string"
}
},
"required": [
"expression"
],
"type": "object"
}