Math-MCP

by EthanHenrickson
Verified

median

Calculates the median of a list of numbers

Input Schema

NameRequiredDescriptionDefault
numbersYesArray of numbers to find the median of

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "numbers": { "description": "Array of numbers to find the median of", "items": { "type": "number" }, "type": "array" } }, "required": [ "numbers" ], "type": "object" }