()
| 250 | * Create the chat tool handler map |
| 251 | */ |
| 252 | export function createChatToolHandler(): Map< |
| 253 | string, |
| 254 | (args: Record<string, unknown>, authContext?: MCPAuthContext) => Promise<string> |
| 255 | > { |
| 256 | const handlers = new Map< |
| 257 | string, |
| 258 | (args: Record<string, unknown>, authContext?: MCPAuthContext) => Promise<string> |
| 259 | >(); |
| 260 | handlers.set(CHAT_TOOL.name, handleChatTool); |
| 261 | return handlers; |
| 262 | } |
no test coverage detected