import type { PostgresQueryParams, PostgresQueryResponse } from '@/tools/postgresql/types' import type { ToolConfig } from '@/tools/types' export const queryTool: ToolConfig = { id: 'postgresql_query', name: 'PostgreSQL Query', description: 'Execute a SELECT query on PostgreSQL database', version: '1.0', params: { host: { type: 'string', required: true, visibility: 'user-only', description: 'PostgreSQL server hostname or IP address', }, port: { type: 'number', required: true, visibility: 'user-only', description: 'PostgreSQL server port (default: 5432)', }, database: { type: 'string', required: true, visibility: 'user-only', description: 'Database name to connect to', }, username: { type: 'string', required: true, visibility: 'user-only', description: 'Database username', }, password: { type: 'string', required: true, visibility: 'user-only', description: 'Database password', }, ssl: { type: 'string', required: false, visibility: 'user-only', description: 'SSL connection mode (disabled, required, preferred)', }, query: { type: 'string', required: true, visibility: 'user-or-llm', description: 'SQL SELECT query to execute', }, }, request: { url: '/api/tools/postgresql/query', method: 'POST', headers: () => ({ 'Content-Type': 'application/json', }), body: (params) => ({ host: params.host, port: Number(params.port), database: params.database, username: params.username, password: params.password, ssl: params.ssl || 'required', query: params.query, }), }, transformResponse: async (response: Response) => { const data = await response.json() if (!response.ok) { throw new Error(data.error || 'PostgreSQL query failed') } return { success: true, output: { message: data.message || 'Query executed successfully', rows: data.rows || [], rowCount: data.rowCount || 0, }, error: undefined, } }, outputs: { message: { type: 'string', description: 'Operation status message' }, rows: { type: 'array', description: 'Array of rows returned from the query' }, rowCount: { type: 'number', description: 'Number of rows returned' }, }, }