database-mcp
Version:
Model Context Protocol server for multi-database access (PostgreSQL, MySQL, SQLite, Snowflake) with comprehensive introspection and analysis tools
10 lines • 373 B
TypeScript
/**
* PostgreSQL System Catalog MCP tools
* Provides advanced PostgreSQL-specific introspection capabilities
*/
import { MCPToolDefinition, MCPToolArgs } from '../types/mcp';
export interface PostgresCatalogQueryArgs extends MCPToolArgs {
query: string;
}
export declare const postgresCatalogTools: MCPToolDefinition[];
//# sourceMappingURL=postgres-catalog.d.ts.map