sequelae-mcp
Version:
Let Claude, Cursor, and other AI agents run real SQL queries on live Postgres databases. No more copy-pasting SQL, stale schema docs, or hallucinated DB adapters — just raw, real-time access. Now with MCP support!
13 lines • 746 B
TypeScript
/**
* Main export for sequelae-mcp npm package
*/
export { SqlAgentMcpServer } from './mcp';
export { SQL_AGENT_TOOLS, getToolDefinition, validateToolInput } from './mcp/tool-definition';
export { McpToolHandler, McpToolRequest, McpToolResponse } from './mcp/tool-handler';
export type { McpToolDefinition, McpPropertySchema } from './mcp/tool-definition';
export type { McpServerInfo, McpToolsListResponse } from './mcp';
export { SqlExecutor } from './core/sql-executor';
export type { QueryResult, SchemaResult, TableInfo, ColumnInfo, ConstraintInfo, MissingTableInfo, } from './core/sql-executor';
export type { BackupOptions, BackupResult } from './types/backup';
export { main as runCli } from './cli';
//# sourceMappingURL=index.d.ts.map