Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Progress Support for Long Running Tool Calls ⏳ #271

Open
wants to merge 5 commits into
base: main
Choose a base branch
from

Conversation

pulkitsharma07
Copy link
Contributor

@pulkitsharma07 pulkitsharma07 commented Apr 5, 2025

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:

  • Optional progress tracking for long-running operations
  • Added new configuration settings to the MCP Inspector for supporting this:
    • 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 ms

Other Changes

  1. Run tool button now shows as a spinner while the tool is running (and becomes disabled).
  2. Improves error handling for callTool exceptions.
  3. Some minor code-refactoring, to improve readability.
  4. Progress notifications are now handled little differently than other notifications, check .onprogress hook in useConnection

Testing

  • Used the everything MCP Server's longRunningOperation tool.
  • To enable progress notifications set MCP_REQUEST_TIMEOUT_RESET_ON_PROGRESS to true (default).
    • if tool response duration is less than MCP_REQUEST_MAX_TOTAL_TIMEOUT then tool call will succeed.
    • otherwise, it will fail with MCP error -32001: Maximum total timeout exceeded
      Screenshot 2025-04-05 at 1 17 51 AM
  • Increased MCP_REQUEST_MAX_TOTAL_TIMEOUT to 200000 (200 seconds) and verified if duration is set to 150 seconds, the tool execution completes fine.
Screenshot 2025-04-05 at 1 48 54 PM
  • Disabled MCP_REQUEST_TIMEOUT_RESET_ON_PROGRESS and verified that tool correctly times out.

Related Issues

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Usability issue for long-running tasks
1 participant