diff options
Diffstat (limited to 'packages/sdk/js/src')
| -rw-r--r-- | packages/sdk/js/src/gen/types.gen.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/packages/sdk/js/src/gen/types.gen.ts b/packages/sdk/js/src/gen/types.gen.ts index 14343f5a1..0ff1f032f 100644 --- a/packages/sdk/js/src/gen/types.gen.ts +++ b/packages/sdk/js/src/gen/types.gen.ts @@ -275,6 +275,10 @@ export type McpLocalConfig = { * Enable or disable the MCP server on startup */ enabled?: boolean + /** + * Timeout in ms for fetching tools from the MCP server. Defaults to 5000 (5 seconds) if not specified. + */ + timeout?: number } export type McpRemoteConfig = { @@ -296,6 +300,10 @@ export type McpRemoteConfig = { headers?: { [key: string]: string } + /** + * Timeout in ms for fetching tools from the MCP server. Defaults to 5000 (5 seconds) if not specified. + */ + timeout?: number } /** |
