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