Skip to content

Commit d1ea840

Browse files
committed
feat(mcp): increase default timeout from 10s to 60s (close: #1140)
1 parent cda0a13 commit d1ea840

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • packages/agent-infra/mcp-client/src

packages/agent-infra/mcp-client/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -520,7 +520,7 @@ export class MCPClient<
520520
},
521521
undefined,
522522
{
523-
timeout: server?.timeout ? server?.timeout * 1000 : 10000, // default: 10s
523+
timeout: server?.timeout ? server?.timeout * 1000 : 60000, // default: 60s
524524
},
525525
);
526526
this.log('info', '[MCP] Call Tool Result:', result);

0 commit comments

Comments
 (0)