| 7 | } |
| 8 | |
| 9 | interface McpResponse { |
| 10 | jsonrpc: string; |
| 11 | id: string; |
| 12 | result?: { |
| 13 | content: Array<{ type: string; text: string }>; |
| 14 | }; |
| 15 | error?: { |
| 16 | code: number; |
| 17 | message: string; |
| 18 | }; |
| 19 | } |
| 20 | |
| 21 | interface ToolResultData { |
| 22 | success: boolean; |
nothing calls this directly
no outgoing calls
no test coverage detected