lance-mcp
Version:
MCP server for interacting with LanceDB database
13 lines (12 loc) • 396 B
TypeScript
import { BaseTool, ToolParams } from "../base/tool.js";
type ListDatabasesParams = ToolParams;
export declare class ListDatabasesTool extends BaseTool<ListDatabasesParams> {
name: string;
description: string;
inputSchema: {
type: "object";
properties: {};
};
execute(_params: ListDatabasesParams): Promise<import("../base/tool.js").ToolResponse>;
}
export {};