UNPKG

lance-mcp

Version:

MCP server for interacting with LanceDB database

20 lines (19 loc) 583 B
import { BaseTool, ToolParams } from "../base/tool.js"; export interface ListCollectionsParams extends ToolParams { database: string; } export declare class ListCollectionsTool extends BaseTool<ListCollectionsParams> { name: string; description: string; inputSchema: { type: "object"; properties: { database: { type: string; description: string; }; required: string[]; }; }; execute(_params: ListCollectionsParams): Promise<import("../base/tool.js").ToolResponse>; }