From 922f90a7947df426d91154a62af63bee5423569a Mon Sep 17 00:00:00 2001 From: Shaun Arman Date: Mon, 1 Jun 2026 12:06:00 -0500 Subject: [PATCH] fix(mcp): change plaintext env input to type=text Change plaintext_env input field from type='password' to type='text' since this field is explicitly for non-sensitive values (DEBUG, LOG_LEVEL, etc.). Using password type for plaintext config was misleading and prevented copy/paste of legitimate non-sensitive configuration. Only the encrypted_env and http_headers fields remain as type='password' for sensitive values like API keys and tokens. --- src/pages/Settings/MCPServers.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/Settings/MCPServers.tsx b/src/pages/Settings/MCPServers.tsx index e08a86cf..a4ace497 100644 --- a/src/pages/Settings/MCPServers.tsx +++ b/src/pages/Settings/MCPServers.tsx @@ -562,7 +562,7 @@ export default function MCPServers() { Space-separated KEY=value pairs for non-sensitive values (e.g., DEBUG=1 LOG_LEVEL=info)

setForm({ ...form, plaintext_env: e.target.value })} placeholder="KEY1=value1 KEY2=value2"