You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: configuration-schema.json
+16Lines changed: 16 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -102,6 +102,10 @@
102
102
"$ref": "#/definitions/HandlerOptions",
103
103
"description": "Handler specifies options for handler/server code generation. If not specified, no handler code is generated."
104
104
},
105
+
"mcp-server": {
106
+
"$ref": "#/definitions/MCPServerOptions",
107
+
"description": "MCPServer specifies options for MCP (Model Context Protocol) server generation. If set, generates MCP tools that wrap the generated client for AI assistant integration. Requires client generation to be enabled."
108
+
},
105
109
"omit-description": {
106
110
"type": "boolean",
107
111
"description": "OmitDescription specifies whether to omit schema description from the spec in the generated code. Defaults to false."
@@ -310,6 +314,18 @@
310
314
"properties": {},
311
315
"required": []
312
316
},
317
+
"MCPServerOptions": {
318
+
"type": "object",
319
+
"additionalProperties": false,
320
+
"description": "Options for MCP (Model Context Protocol) server generation. MCP servers expose API operations as tools that AI assistants (Claude, Cursor, etc.) can invoke.",
321
+
"properties": {
322
+
"default-skip": {
323
+
"type": "boolean",
324
+
"description": "If true, skip all operations by default unless x-mcp.skip is explicitly false. If false (default), include all operations unless x-mcp.skip is true."
0 commit comments