Documentation Index
Fetch the complete documentation index at: https://docs.mcp-use.com/llms.txt
Use this file to discover all available pages before exploring further.
View the source code for this module on GitHub: https://github.com/mcp-use/mcp-use/blob/main/libraries/python/mcp_use/server/utils/json_schema.py
Optional[T] as \{"anyOf": [\{"type": "T"\}, \{"type": "null"\}]\}. While valid JSON Schema, this is not idiomatic MCP — the protocol
signals optionality by omitting the property from the required array. The
anyOf/null pattern also confuses several MCP clients (e.g. the Inspector)
which fail to render descriptions for those fields.
simplify_optional_schema walks a JSON Schema object and collapses every
nullable anyOf into the simpler \{"type": "T"\} form.