power
Perform power calculations by entering a base and exponent, enabling accurate results for numerical operations on the Calculator MCP server.
Instructions
计算幂运算
Input Schema
Name | Required | Description | Default |
---|---|---|---|
base | Yes | ||
exponent | Yes |
Input Schema (JSON Schema)
{
"properties": {
"base": {
"title": "Base",
"type": "number"
},
"exponent": {
"title": "Exponent",
"type": "number"
}
},
"required": [
"base",
"exponent"
],
"title": "powerArguments",
"type": "object"
}