* Returns an array of all registered and discovered tool instances.
()
| 437 | * Returns an array of all registered and discovered tool instances. |
| 438 | */ |
| 439 | getAllTools(): AnyDeclarativeTool[] { |
| 440 | return Array.from(this.tools.values()).sort((a, b) => |
| 441 | a.displayName.localeCompare(b.displayName), |
| 442 | ); |
| 443 | } |
| 444 | |
| 445 | /** |
| 446 | * Returns an array of tools registered from a specific MCP server. |
no outgoing calls
no test coverage detected