Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 15 additions & 14 deletions pkg/parser/schemas/main_workflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -3476,15 +3476,12 @@
"type": "string"
},
"description": "List of allowed tool names (restricts which tools from the MCP server can be used)",
"examples": [
["create-issue", "add-comment"],
["read-file", "write-file"]
]
"examples": [["*"], ["store_memory", "retrieve_memory"], ["create-issue", "add-comment"]]
},
"entrypoint": {
"type": "string",
"description": "Container entrypoint override (used with container field)",
"examples": ["/bin/sh", "node"]
"description": "Optional entrypoint override for container (equivalent to docker run --entrypoint)",
"examples": ["/bin/sh", "/custom/entrypoint.sh", "python"]
},
"mounts": {
"type": "array",
Expand Down Expand Up @@ -6342,7 +6339,8 @@
},
"registry": {
"type": "string",
"description": "URI to the installation location when MCP is installed from a registry"
"description": "URI to the installation location when MCP is installed from a registry",
"examples": ["https://api.mcp.github.com/v0/servers/microsoft/markitdown"]
},
"command": {
"type": "string",
Expand Down Expand Up @@ -6370,8 +6368,8 @@
},
"entrypoint": {
"type": "string",
"description": "Container entrypoint override (used with container field)",
"examples": ["/bin/sh", "node"]
"description": "Optional entrypoint override for container (equivalent to docker run --entrypoint)",
"examples": ["/bin/sh", "/custom/entrypoint.sh", "python"]
},
"entrypointArgs": {
"type": "array",
Expand Down Expand Up @@ -6428,10 +6426,11 @@
},
"allowed": {
"type": "array",
"description": "List of allowed tool functions",
"description": "List of allowed tool names for this MCP server",
"items": {
"type": "string"
}
},
"examples": [["*"], ["store_memory", "retrieve_memory"], ["brave_web_search"]]
}
},
"additionalProperties": false,
Expand Down Expand Up @@ -6490,7 +6489,8 @@
},
"registry": {
"type": "string",
"description": "URI to the installation location when MCP is installed from a registry"
"description": "URI to the installation location when MCP is installed from a registry",
"examples": ["https://api.mcp.github.com/v0/servers/microsoft/markitdown"]
},
"url": {
"type": "string",
Expand All @@ -6509,10 +6509,11 @@
},
"allowed": {
"type": "array",
"description": "List of allowed tool functions",
"description": "List of allowed tool names for this MCP server",
"items": {
"type": "string"
}
},
"examples": [["*"], ["store_memory", "retrieve_memory"], ["brave_web_search"]]
}
},
"required": ["url"],
Expand Down