From b9e64afa4f13794223a1262c8c9114f7824248fa Mon Sep 17 00:00:00 2001 From: John Turco Date: Fri, 22 May 2026 11:45:52 -0400 Subject: [PATCH] docs: note unicode escape for upstream Mustache processors Co-Authored-By: Oz --- src/content/docs/agent-platform/cloud-agents/mcp.mdx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/content/docs/agent-platform/cloud-agents/mcp.mdx b/src/content/docs/agent-platform/cloud-agents/mcp.mdx index ed66e9b..a5b806c 100644 --- a/src/content/docs/agent-platform/cloud-agents/mcp.mdx +++ b/src/content/docs/agent-platform/cloud-agents/mcp.mdx @@ -65,6 +65,10 @@ You may define any number of MCP servers in a single config. } ``` +:::note +If the config passes through a system that pre-processes `{{...}}` before it reaches Oz (for example, Jira/Atlassian Automation), use JSON unicode escapes for the braces: `\u007b\u007bMY_SECRET\u007d\u007d` decodes to `{{MY_SECRET}}`, which Oz resolves normally. +::: + ## Using MCP servers in an agent config file For repeatable cloud agent workflows, declare your MCP servers inside the agent config file passed to `-f / --file`: