Skip to content

Commit 79a20e9

Browse files
committed
Merge remote-tracking branch 'origin/main' into ochafik/dev-summit-talk-2026
2 parents 019a70b + c59c606 commit 79a20e9

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

src/app.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -860,7 +860,14 @@ export class App extends ProtocolWithEvents<
860860
return await this.request(
861861
{ method: "tools/call", params },
862862
CallToolResultSchema,
863-
options,
863+
{
864+
// Hosts may interpose long-running or user-interactive steps before the
865+
// tool result arrives. Opting in here lets a host heartbeat keep the
866+
// request alive past the default timeout; callers can still override.
867+
onprogress: () => {},
868+
resetTimeoutOnProgress: true,
869+
...options,
870+
},
864871
);
865872
}
866873

0 commit comments

Comments
 (0)