UNPKG

@hechtcarmel/vertica-mcp

Version:

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

31 lines 875 B
import type { MCPTool } from "../types/tool.js"; export default class StreamQueryTool implements MCPTool { name: string; description: string; inputSchema: { type: "object"; properties: { sql: { type: "string"; description: string; }; batchSize: { type: "number"; minimum: number; maximum: number; default: number; description: string; }; maxRows: { type: "number"; minimum: number; maximum: number; description: string; }; }; required: string[]; }; execute(input: Record<string, unknown>): Promise<string>; private parseInput; } //# sourceMappingURL=stream-query.d.ts.map