lance-mcp
Version:
MCP server for interacting with LanceDB database
27 lines (26 loc) • 720 B
TypeScript
import { BaseTool, ToolParams } from "../base/tool.js";
interface DropIndexParams extends ToolParams {
collection: string;
indexName: string;
[key: string]: unknown;
}
export declare class DropIndexTool extends BaseTool<DropIndexParams> {
name: string;
description: string;
inputSchema: {
type: "object";
properties: {
collection: {
type: string;
description: string;
};
indexName: {
type: string;
description: string;
};
};
required: string[];
};
execute(params: DropIndexParams): Promise<import("../base/tool.js").ToolResponse>;
}
export {};