feat: one click installation for popular MCP servers (#657)

* backend configuration

* frontend

* fmt

* adapt remote config

* lock

* opencode adapter
This commit is contained in:
Gabriel Gordon-Hall
2025-09-10 10:39:45 +01:00
committed by GitHub
parent c79f0a200d
commit 4c5be4e807
13 changed files with 755 additions and 74 deletions

View File

@@ -24,7 +24,7 @@ export type SearchMode = "taskform" | "settings";
export type ExecutorAction = { typ: ExecutorActionType, next_action: ExecutorAction | null, };
export type McpConfig = { servers: { [key in string]?: JsonValue }, servers_path: Array<string>, template: JsonValue, vibe_kanban: JsonValue, is_toml_config: boolean, };
export type McpConfig = { servers: { [key in string]?: JsonValue }, servers_path: Array<string>, template: JsonValue, preconfigured: JsonValue, is_toml_config: boolean, };
export type ExecutorActionType = { "type": "CodingAgentInitialRequest" } & CodingAgentInitialRequest | { "type": "CodingAgentFollowUpRequest" } & CodingAgentFollowUpRequest | { "type": "ScriptRequest" } & ScriptRequest;