database-mcp
Version:
Model Context Protocol server for multi-database access (PostgreSQL, MySQL, SQLite, Snowflake) with comprehensive introspection and analysis tools
12 lines • 343 B
TypeScript
/**
* CSV Export MCP tool
* Execute SQL queries and export results to CSV files
*/
import { MCPToolDefinition } from '../types/mcp';
export interface ExportToCsvArgs {
query: string;
filepath: string;
include_headers?: boolean;
}
export declare const csvExportTools: MCPToolDefinition[];
//# sourceMappingURL=csv-export.d.ts.map