Add per-server MCP network timeout configuration

This commit is contained in:
Matt Rubens
2025-01-26 15:32:17 -05:00
parent 3deeb0c28b
commit 57518e10b3
7 changed files with 341 additions and 91 deletions

View File

@@ -51,6 +51,7 @@ export interface WebviewMessage {
| "restartMcpServer"
| "toggleToolAlwaysAllow"
| "toggleMcpServer"
| "updateMcpTimeout"
| "fuzzyMatchThreshold"
| "preferredLanguage"
| "writeDelayMs"
@@ -99,6 +100,7 @@ export interface WebviewMessage {
query?: string
slug?: string
modeConfig?: ModeConfig
timeout?: number
}
export type ClineAskResponse = "yesButtonClicked" | "noButtonClicked" | "messageResponse"