feat: Progress Support for Long Running Tool Calls ⏳ #271
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Progress Support for Long Running Tool Calls
progress_flow.mov
The MCP Inspector now fully supports the Model Context Protocol Progress Flow specification, which enables:
MCP_REQUEST_TIMEOUT_RESET_ON_PROGRESS
: Controls whether timeouts reset on progress notifications. Default:true
MCP_REQUEST_MAX_TOTAL_TIMEOUT
: Sets maximum total timeout for requests with progress notifications. Default:60000
msOther Changes
Run tool
button now shows as a spinner while the tool is running (and becomes disabled).callTool
exceptions..onprogress
hook inuseConnection
Testing
longRunningOperation
tool.MCP_REQUEST_TIMEOUT_RESET_ON_PROGRESS
totrue
(default).duration
is less thanMCP_REQUEST_MAX_TOTAL_TIMEOUT
then tool call will succeed.MCP error -32001: Maximum total timeout exceeded
MCP_REQUEST_MAX_TOTAL_TIMEOUT
to 200000 (200 seconds) and verified if duration is set to 150 seconds, the tool execution completes fine.MCP_REQUEST_TIMEOUT_RESET_ON_PROGRESS
and verified that tool correctly times out.Related Issues