Add support in UI to configure request timeout
This commit is contained in:
@@ -1,3 +1,6 @@
|
||||
import { InspectorConfig } from "./configurationTypes";
|
||||
|
||||
|
||||
// OAuth-related session storage keys
|
||||
export const SESSION_KEYS = {
|
||||
CODE_VERIFIER: "mcp_code_verifier",
|
||||
@@ -5,3 +8,10 @@ export const SESSION_KEYS = {
|
||||
TOKENS: "mcp_tokens",
|
||||
CLIENT_INFORMATION: "mcp_client_information",
|
||||
} as const;
|
||||
|
||||
export const DEFAULT_INSPECTOR_CONFIG: InspectorConfig = {
|
||||
MCP_SERVER_REQUEST_TIMEOUT: {
|
||||
description: "Timeout for requests to the MCP server (ms)",
|
||||
value: 10000,
|
||||
},
|
||||
} as const;
|
||||
Reference in New Issue
Block a user