From 430750e2f82931cd2869b2ee15531891871e4b60 Mon Sep 17 00:00:00 2001 From: "opencode-agent[bot]" <219766164+opencode-agent[bot]@users.noreply.github.com> Date: Sun, 12 Jul 2026 10:56:24 -0500 Subject: [PATCH] fix(tui): remove unsupported MCP toggle (#36531) Co-authored-by: Dax Raad --- packages/tui/src/app.tsx | 2 +- packages/tui/src/config/v1/keybind.ts | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/tui/src/app.tsx b/packages/tui/src/app.tsx index 1b291535c96..61144859a90 100644 --- a/packages/tui/src/app.tsx +++ b/packages/tui/src/app.tsx @@ -741,7 +741,7 @@ function App(props: { onSnapshot?: () => Promise; pluginHost: TuiPlugi }, { name: "mcp.list", - title: "Toggle MCPs", + title: "MCP Servers", category: "Agent", slashName: "mcps", run: () => { diff --git a/packages/tui/src/config/v1/keybind.ts b/packages/tui/src/config/v1/keybind.ts index 9dd03c4a2ac..4b108f53037 100644 --- a/packages/tui/src/config/v1/keybind.ts +++ b/packages/tui/src/config/v1/keybind.ts @@ -203,7 +203,6 @@ export const Definitions = { "dialog.select.submit": keybind("return", "Submit selected dialog item"), "dialog.prompt.submit": keybind("return", "Submit dialog prompt"), "dialog.project_copy.generate": keybind("tab", "Generate project copy name"), - "dialog.mcp.toggle": keybind("space", "Toggle MCP in MCP dialog"), "dialog.move_session.new": keybind("ctrl+m", "New project copy"), "dialog.move_session.delete": keybind("ctrl+d", "Delete project copy"), "dialog.move_session.refresh": keybind("ctrl+r", "Refresh project copies"),