@hechtcarmel/vertica-mcp
Version:
MCP (Model Context Protocol) server for readonly Vertica database operations
22 lines • 623 B
TypeScript
import type { MCPTool } from "../types/tool.js";
export default class GetTableStructureTool 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=get-table-structure.d.ts.map