advanced_calculate
Execute advanced mathematical operations such as factorial, logarithm, combinations, and permutations with precision and ease on the example-mcp-server-stdio platform.
Instructions
Perform advanced mathematical operations (factorial, log, combinations, permutations)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
base | No | Base for logarithm (default: e) | |
k | No | Secondary input for combinations/permutations | |
n | Yes | Primary input | |
operation | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"base": {
"description": "Base for logarithm (default: e)",
"type": "number"
},
"k": {
"description": "Secondary input for combinations/permutations",
"type": "number"
},
"n": {
"description": "Primary input",
"type": "number"
},
"operation": {
"enum": [
"factorial",
"log",
"combinations",
"permutations"
],
"type": "string"
}
},
"required": [
"operation",
"n"
],
"type": "object"
}