mirror of
https://github.com/openai/codex.git
synced 2026-04-25 15:15:15 +00:00
- [x] Add a new app-server method so that MCP Apps can call their own MCP server directly.
23 lines
380 B
JSON
23 lines
380 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"properties": {
|
|
"_meta": true,
|
|
"arguments": true,
|
|
"server": {
|
|
"type": "string"
|
|
},
|
|
"threadId": {
|
|
"type": "string"
|
|
},
|
|
"tool": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"server",
|
|
"threadId",
|
|
"tool"
|
|
],
|
|
"title": "McpServerToolCallParams",
|
|
"type": "object"
|
|
} |