@hechtcarmel/vertica-mcp
Version:
MCP server for Vertica database operations with configurable readonly mode
23 lines • 640 B
TypeScript
import type { MCPTool } from "../types/tool.js";
export default class ExecuteQueryTool implements MCPTool {
name: string;
get description(): string;
get 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