(message: string)
| 128 | } |
| 129 | |
| 130 | function toolError(message: string): CallToolResult { |
| 131 | return { content: [{ type: 'text', text: message }], isError: true } |
| 132 | } |
| 133 | |
| 134 | function toWireTool(tool: NonCodemodeTool): Tool { |
| 135 | const { name, title, description, inputSchema } = tool |
no outgoing calls
no test coverage detected