()
| 76 | * Knowledge and billing tools are NOT exposed - use chat_with_addie instead. |
| 77 | */ |
| 78 | export function getAllTools() { |
| 79 | const chatTool = convertToMCPTool(CHAT_TOOL); |
| 80 | const directoryTools = TOOL_DEFINITIONS; |
| 81 | const exposedTools = ALL_EXPOSED_TOOL_DEFINITIONS; |
| 82 | |
| 83 | return { |
| 84 | directory: directoryTools, |
| 85 | exposed: exposedTools, |
| 86 | chat: chatTool, |
| 87 | all: [chatTool, ...directoryTools, ...exposedTools], |
| 88 | }; |
| 89 | } |
| 90 | |
| 91 | /** |
| 92 | * Create all tool handlers |
no test coverage detected