sqrt
Calculate the square root of a number using the sqrt tool in Calculator MCP, designed to perform precise mathematical operations for LLMs.
Instructions
Square root of a number
Input Schema
Name | Required | Description | Default |
---|---|---|---|
a | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"a": {
"type": "number"
}
},
"required": [
"a"
],
"type": "object"
}