@hechtcarmel/vertica-mcp
Version:
MCP (Model Context Protocol) server for readonly Vertica database operations
18 lines • 496 B
TypeScript
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;
};
};
required: never[];
};
execute(input: Record<string, unknown>): Promise<string>;
private parseInput;
}
//# sourceMappingURL=list-views.d.ts.map