max
Identify the maximum value from a list of numbers using a simple API for accurate numerical calculations, supported by the Math-MCP server.
Instructions
Finds the maximum value from a list of numbers
Input Schema
Name | Required | Description | Default |
---|---|---|---|
numbers | Yes | Array of numbers to find the maximum of |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"numbers": {
"description": "Array of numbers to find the maximum of",
"items": {
"type": "number"
},
"type": "array"
}
},
"required": [
"numbers"
],
"type": "object"
}