sendToolListChanged

void sendToolListChanged()

Notify clients that tool list changed.

Implementation

void sendToolListChanged() {
  try {
    (_mcpServer['sendToolListChanged'] as JSFunction).callAsFunction(
      _mcpServer,
    );
  } catch (_) {
    // Ignore errors on notifications
  }
}