Math-MCP

by EthanHenrickson
Verified

round

Rounds a number to the nearest integer

Input Schema

NameRequiredDescriptionDefault
valueYesThe number to round

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "value": { "description": "The number to round", "type": "number" } }, "required": [ "value" ], "type": "object" }