Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/opencode/src/cli/cmd/tui/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -357,6 +357,7 @@ function App() {
{
title: "Toggle MCPs",
value: "mcp.list",
keybind: "mcp_list",
category: "Agent",
onSelect: () => {
dialog.replace(() => <DialogMcp />)
Expand Down
1 change: 1 addition & 0 deletions packages/opencode/src/config/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -552,6 +552,7 @@ export namespace Config {
model_cycle_favorite_reverse: z.string().optional().default("none").describe("Previous favorite model"),
command_list: z.string().optional().default("ctrl+p").describe("List available commands"),
agent_list: z.string().optional().default("<leader>a").describe("List agents"),
mcp_list: z.string().optional().default("<leader>p").describe("Toggle MCPs"),
agent_cycle: z.string().optional().default("tab").describe("Next agent"),
agent_cycle_reverse: z.string().optional().default("shift+tab").describe("Previous agent"),
variant_cycle: z.string().optional().default("ctrl+t").describe("Cycle model variants"),
Expand Down
4 changes: 4 additions & 0 deletions packages/sdk/js/src/v2/gen/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -983,6 +983,10 @@ export type KeybindsConfig = {
* List agents
*/
agent_list?: string
/**
* Toggle MCPs
*/
mcp_list?: string
/**
* Next agent
*/
Expand Down
5 changes: 5 additions & 0 deletions packages/sdk/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -7734,6 +7734,11 @@
"default": "<leader>a",
"type": "string"
},
"mcp_list": {
"description": "Toggle MCPs",
"default": "<leader>p",
"type": "string"
},
"agent_cycle": {
"description": "Next agent",
"default": "tab",
Expand Down