You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/mcp-configuration.mdx
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -61,6 +61,8 @@ This architecture enables teams to share common settings like API keys while all
61
61
62
62
The heart of the system is sophisticated lock/unlock controls with precise categorization:
63
63
64
+
**Secret Type Support:** Configuration values marked as `type: "secret"` in schemas are automatically encrypted for security. For complete details on secret encryption, masking, and security, see [Security and Privacy](/security).
65
+
64
66
**Global Administrator Controls:**
65
67
-**Sophisticated Categorization** - Categorize every configuration element into Template/Team/User tiers
66
68
-**Granular Lock/Unlock Controls** - Set default lock states and visibility controls for each element
@@ -116,7 +118,7 @@ Here's how the three tiers combine into a final runtime configuration:
@@ -140,12 +142,14 @@ Here's how the three tiers combine into a final runtime configuration:
140
142
],
141
143
"env": {
142
144
"PROTOCOL_VERSION": "1.0",
143
-
"SHARED_API_KEY": "team-secret-12345",
145
+
"SHARED_API_KEY": "decrypted-secret-for-runtime",
144
146
"DEBUG": "true"
145
147
}
146
148
}
147
149
```
148
150
151
+
*Note: Secret values are automatically decrypted only for runtime execution. In all other contexts (API responses, user interfaces), secrets appear masked as `*****`.*
152
+
149
153
## Key Benefits
150
154
151
155
**Security:** Sensitive credentials managed at appropriate tiers with encryption and access controls
0 commit comments