UNPKG

@hechtcarmel/vertica-mcp

Version:

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

23 lines 628 B
import type { MCPTool } from "../types/tool.js"; export default class ExecuteQueryTool implements MCPTool { name: string; description: string; inputSchema: { type: "object"; properties: { sql: { type: "string"; description: string; }; params: { type: "array"; items: {}; description: string; }; }; required: string[]; }; execute(input: Record<string, unknown>): Promise<string>; private parseInput; } //# sourceMappingURL=execute-query.d.ts.map