| 1 | export interface MCPServer { |
| 2 | name: string |
| 3 | value: string |
| 4 | description: string |
| 5 | capabilities: string[] |
| 6 | } |
| 7 | |
| 8 | export interface QueryResult { |
| 9 | result: string | QueryStructuredResult |
| 10 | structured_result: QueryStructuredResult | null |
| 11 | execution_time: number |
| 12 | } |
| 13 | |
| 14 | export interface QueryStructuredResult { |
| 15 | response: string |
| 16 | thinking_process: string |
| 17 | } |
| 18 | |
| 19 | export interface ExampleQuestion { |
| 20 | question: string |
| 21 | description: string |
| 22 | category: string |
| 23 | } |