@trops/dash-core 0.1.289 → 0.1.290

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -67598,7 +67598,14 @@ function registerPrompt$1(promptDef) {
67598
67598
  */
67599
67599
  function applyRegistrations(server) {
67600
67600
  for (const tool of registeredTools) {
67601
- server.tool(tool.name, tool.description, tool.inputSchema, tool.handler);
67601
+ server.registerTool(
67602
+ tool.name,
67603
+ {
67604
+ description: tool.description,
67605
+ inputSchema: tool.inputSchema,
67606
+ },
67607
+ tool.handler,
67608
+ );
67602
67609
  }
67603
67610
  for (const resource of registeredResources) {
67604
67611
  server.resource(