mcp ui collision fixes: regenerate resource read schemas

This commit is contained in:
Drew Schuster
2026-06-26 12:22:52 -07:00
committed by fbauer
parent 247fd27ba8
commit 36d2e2dbdb
5 changed files with 33 additions and 1 deletions

View File

@@ -1582,6 +1582,13 @@
},
"McpResourceReadParams": {
"properties": {
"originCallId": {
"description": "The MCP tool call whose app context identifies the resource provider. Requires `threadId`.",
"type": [
"string",
"null"
]
},
"server": {
"type": "string"
},

View File

@@ -11941,6 +11941,13 @@
"McpResourceReadParams": {
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"originCallId": {
"description": "The MCP tool call whose app context identifies the resource provider. Requires `threadId`.",
"type": [
"string",
"null"
]
},
"server": {
"type": "string"
},

View File

@@ -8345,6 +8345,13 @@
"McpResourceReadParams": {
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"originCallId": {
"description": "The MCP tool call whose app context identifies the resource provider. Requires `threadId`.",
"type": [
"string",
"null"
]
},
"server": {
"type": "string"
},

View File

@@ -1,6 +1,13 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"originCallId": {
"description": "The MCP tool call whose app context identifies the resource provider. Requires `threadId`.",
"type": [
"string",
"null"
]
},
"server": {
"type": "string"
},

View File

@@ -2,4 +2,8 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
export type McpResourceReadParams = { threadId?: string | null, server: string, uri: string, };
export type McpResourceReadParams = { threadId?: string | null, server: string, uri: string,
/**
* The MCP tool call whose app context identifies the resource provider. Requires `threadId`.
*/
originCallId?: string | null, };