exponential
Calculate the exponential function e^x for any given power value using this tool from MCP Calc Tools server.
Instructions
Calculate exponential function (e^x)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| power | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": true,
"properties": {
"power": {
"type": "number"
}
},
"required": [
"power"
],
"type": "object"
}