UNPKG

@hechtcarmel/vertica-mcp

Version:

MCP (Model Context Protocol) server for readonly Vertica database operations

22 lines 610 B
import type { MCPTool } from "../types/tool.js"; export default class ListIndexesTool implements MCPTool { name: string; description: string; inputSchema: { type: "object"; properties: { tableName: { type: "string"; description: string; }; schemaName: { type: "string"; description: string; }; }; required: string[]; }; execute(input: Record<string, unknown>): Promise<string>; private parseInput; } //# sourceMappingURL=list-indexes.d.ts.map