TUI app-server

This commit is contained in:
pakrym-oai
2026-02-23 08:31:57 -08:00
parent e8949f4507
commit 10ed8d6a42
116 changed files with 9136 additions and 928 deletions

View File

@@ -430,6 +430,29 @@
],
"type": "object"
},
"McpElicitationRequestParams": {
"properties": {
"message": {
"type": "string"
},
"requestId": {
"$ref": "#/definitions/RequestId"
},
"serverName": {
"type": "string"
},
"threadId": {
"type": "string"
}
},
"required": [
"message",
"requestId",
"serverName",
"threadId"
],
"type": "object"
},
"NetworkApprovalContext": {
"properties": {
"host": {
@@ -737,6 +760,31 @@
"title": "Item/tool/requestUserInputRequest",
"type": "object"
},
{
"description": "Request the user to resolve an MCP elicitation prompt.",
"properties": {
"id": {
"$ref": "#/definitions/RequestId"
},
"method": {
"enum": [
"item/mcpElicitation/requestDecision"
],
"title": "Item/mcpElicitation/requestDecisionRequestMethod",
"type": "string"
},
"params": {
"$ref": "#/definitions/McpElicitationRequestParams"
}
},
"required": [
"id",
"method",
"params"
],
"title": "Item/mcpElicitation/requestDecisionRequest",
"type": "object"
},
{
"description": "Execute a dynamic tool call on the client.",
"properties": {