registerAll static method

void registerAll(
  1. McpToolRegistry registry
)

Register all tools with the given registry

Implementation

static void registerAll(McpToolRegistry registry) {
  for (final tool in _tools.values) {
    registry.register(tool);
  }
}