@@ -43,6 +43,7 @@ The configuration supports multiple resource types:
43434 . ** index** - Search indexes
44445 . ** apps** - Action center apps
45456 . ** connection** - External connections
46+ 7 . ** mcpServer** - MCP servers
4647
4748
4849---
@@ -303,6 +304,45 @@ Connections define external system integrations.
303304
304305---
305306
307+ ### 7. MCP Server
308+
309+ MCP servers provide an MCP endpoint that coded agents can connect to.
310+
311+ ** Key Format:** ` slug.folder_path `
312+
313+ ** Example:**
314+
315+ ``` json
316+ {
317+ "resource" : " mcpServer" ,
318+ "key" : " my-mcp-server.MyFolder" ,
319+ "value" : {
320+ "name" : {
321+ "defaultValue" : " my-mcp-server" ,
322+ "isExpression" : false ,
323+ "displayName" : " Name"
324+ },
325+ "folderPath" : {
326+ "defaultValue" : " MyFolder" ,
327+ "isExpression" : false ,
328+ "displayName" : " Folder Path"
329+ }
330+ },
331+ "metadata" : {
332+ "ActivityName" : " retrieve_async" ,
333+ "BindingsVersion" : " 2.2" ,
334+ "DisplayLabel" : " FullName"
335+ }
336+ }
337+ ```
338+
339+ ** Common Metadata:**
340+ - ` ActivityName ` : Typically ` "retrieve_async" `
341+ - ` BindingsVersion ` : ` "2.2" `
342+ - ` DisplayLabel ` : ` "FullName" `
343+
344+ ---
345+
306346## Value Object Structure
307347
308348### For Assets, Processes, Buckets, Apps and Indexes
@@ -487,6 +527,27 @@ Metadata provides additional context about the resource binding.
487527 "Connector" : " Salesforce" ,
488528 "UseConnectionService" : " True"
489529 }
530+ },
531+ {
532+ "resource" : " mcpServer" ,
533+ "key" : " my-mcp-server.MyFolder" ,
534+ "value" : {
535+ "name" : {
536+ "defaultValue" : " my-mcp-server" ,
537+ "isExpression" : false ,
538+ "displayName" : " Name"
539+ },
540+ "folderPath" : {
541+ "defaultValue" : " MyFolder" ,
542+ "isExpression" : false ,
543+ "displayName" : " Folder Path"
544+ }
545+ },
546+ "metadata" : {
547+ "ActivityName" : " retrieve_async" ,
548+ "BindingsVersion" : " 2.2" ,
549+ "DisplayLabel" : " FullName"
550+ }
490551 }
491552 ]
492553}
0 commit comments