diff --git a/web/frontend/src/components/config/config-page.tsx b/web/frontend/src/components/config/config-page.tsx index 93261aa17..15d7e1bc1 100644 --- a/web/frontend/src/components/config/config-page.tsx +++ b/web/frontend/src/components/config/config-page.tsx @@ -336,6 +336,10 @@ export function ConfigPage() { server.headersText, `MCP server ${server.name} headers`, ), + command: null, + args: null, + env: null, + env_file: null, }, ] as const } @@ -348,12 +352,16 @@ export function ConfigPage() { server.name, { enabled: server.enabled, + type: "stdio", command: server.command, args: parseMultilineList(server.argsText), env: parseJSONObjectField( server.envText, `MCP server ${server.name} env`, ), + url: null, + headers: null, + env_file: null, }, ] as const })