{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/workato/refs/heads/main/json-schema/workato-mcp-server-mcp-server-input-schema.json", "title": "McpServerInput", "description": "Input schema for creating or updating an MCP server.", "type": "object", "properties": { "name": { "type": "string", "description": "Display name for the MCP server." }, "folder_id": { "type": "integer", "description": "ID of the folder to place the MCP server in." }, "authentication_method": { "type": "string", "description": "Authentication method to use for the MCP server." } }, "required": [ "name", "folder_id" ] }