UNPKG

database-mcp

Version:

Model Context Protocol server for multi-database access (PostgreSQL, MySQL, SQLite, Snowflake) with comprehensive introspection and analysis tools

26 lines 683 B
/** * MCP Tools Registry - combines all tool modules */ import { MCPResult } from '../types/mcp'; /** * Get all available tools for MCP server registration * @returns Array of tool definitions */ export declare const getToolDefinitions: () => { name: string; description: string; inputSchema: import("../types/mcp").MCPInputSchema; }[]; /** * Handle MCP tool call requests * @param request - MCP tool call request * @returns Tool response in MCP format */ export declare const handleToolCall: (request: any) => Promise<MCPResult | { content: { type: string; text: string; }[]; isError: boolean; }>; //# sourceMappingURL=index.d.ts.map