{ "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "RequestId": { "anyOf": [ { "type": "string" }, { "format": "int64", "type": "integer" } ] } }, "properties": { "message": { "type": "string" }, "requestId": { "$ref": "#/definitions/RequestId" }, "serverName": { "type": "string" }, "threadId": { "type": "string" } }, "required": [ "message", "requestId", "serverName", "threadId" ], "title": "McpElicitationRequestParams", "type": "object" }