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

Added auto-refreshing tool list notification handler to client #239

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

johnjjung
Copy link

@johnjjung johnjjung commented Mar 28, 2025

Added handler for server's notifications/tools/list_changed notification
Implemented auto-refresh for tools list when notification is received
Added onToolListChanged callback property to provide updated tools to clients
Added setToolListChangedCallback convenience method for callback registration
Added capability validation to ensure tools support before refreshing
Fixed type definitions for proper TypeScript compliance
Added error handling for failed refreshes

Motivation and Context

  • Improves the client's handling of tool list updates from the server.
  • Previously, the client had no built-in mechanism to refresh its local tools when the server sent a tools/list_changed notification.
  • Now, the client automatically fetches the updated tools when notified.
  • Applications can register a callback to receive the updated tools, simplifying integration.

Related Issues and discussions:

#205

https://github.com/orgs/modelcontextprotocol/discussions/76

How Has This Been Tested?

  • Tested by simulating server notifications in a development environment.
  • Verified that the callback receives the updated tools list.
  • Confirmed error handling correctly triggers on failed refresh attempts.
  • Checked capability validation blocks refresh on unsupported clients.

Breaking Changes

  • No breaking changes. This is a purely additive feature.
  • Existing code will continue to work.
  • Applications can optionally implement the new callback to receive tool updates.

Types of changes

[ ] Bug fix (non-breaking change which fixes an issue)
[x] New feature (non-breaking change which adds functionality)
[ ] Breaking change (fix or feature that would cause existing functionality to change)
[ ] Documentation update

Checklist

[x] I have read the MCP Documentation
[x] My code follows the repository's style guidelines
[x] New and existing tests pass locally
[x] I have added appropriate error handling
[x] I have added or updated documentation as needed

Additional context

  • Implementation follows the same pattern as other notification handlers in the codebase.
  • Adds automatic refreshing to reduce boilerplate in client applications.
  • Error handling ensures that applications are notified of tool list changes even if the refresh fails.
  • Clients can implement custom fallback strategies if necessary.

Added handler for server's notifications/tools/list_changed notification
Implemented auto-refresh for tools list when notification is received
Added onToolListChanged callback property to provide updated tools to clients
Added setToolListChangedCallback convenience method for callback registration
Added capability validation to ensure tools support before refreshing
Fixed type definitions for proper TypeScript compliance
Added error handling for failed refreshes
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.

1 participant