UNPKG

@hechtcarmel/vertica-mcp

Version:

MCP server for Vertica database operations with configurable readonly mode

17 lines 469 B
import type { MCPTool } from "../types/tool.js"; export default class ListViewsTool implements MCPTool { name: string; description: string; inputSchema: { type: "object"; properties: { schemaName: { type: "string"; description: string; }; }; }; execute(input: Record<string, unknown>): Promise<string>; private parseInput; } //# sourceMappingURL=list-views.d.ts.map