UNPKG

lance-mcp

Version:

MCP server for interacting with LanceDB database

11 lines (10 loc) 343 B
import { BaseTool } from "./base/tool.js"; import { Tool } from "@modelcontextprotocol/sdk/types.js"; export declare class ToolRegistry { private tools; constructor(); registerTool(tool: BaseTool<any>): void; getTool(name: string): BaseTool<any> | undefined; getAllTools(): BaseTool<any>[]; getToolSchemas(): Tool[]; }