Math-MCP

by EthanHenrickson
Verified

ceiling

Rounds a number up to the nearest integer

Input Schema

NameRequiredDescriptionDefault
valueYesThe number to round up

Input Schema (JSON Schema)

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