Workato · Schema

McpServerInput

Input schema for creating or updating an MCP server.

AgenticAPI ManagementAutomationB2BEmbedded iPaaSEnterpriseIntegrationiPaaSOrchestrationWorkflow

Properties

Name Type Description
name string Display name for the MCP server.
folder_id integer ID of the folder to place the MCP server in.
authentication_method string Authentication method to use for the MCP server.
View JSON Schema on GitHub

JSON Schema

workato-mcp-server-mcp-server-input-schema.json Raw ↑
{
  "$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"
  ]
}