{ "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "McpServerStatusDetail": { "enum": [ "full", "toolsAndAuthOnly" ], "type": "string" } }, "properties": { "cursor": { "description": "Opaque pagination cursor returned by a previous call.", "type": [ "string", "null" ] }, "detail": { "anyOf": [ { "$ref": "#/definitions/McpServerStatusDetail" }, { "type": "null" } ], "description": "Controls how much MCP inventory data to fetch for each server. Defaults to `Full` when omitted." }, "limit": { "description": "Optional page size; defaults to a server-defined value.", "format": "uint32", "minimum": 0.0, "type": [ "integer", "null" ] } }, "title": "ListMcpServerStatusParams", "type": "object" }