├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── sample-docs ├── Chua_Kao-Ping_HealthCareSystemOverview_2006.pdf ├── Guide-to-U.S.-Healthcare-System.pdf └── U_S_Health_System_Performance_A_National.pdf ├── src ├── config.ts ├── index.ts ├── lancedb │ └── client.ts ├── seed.ts └── tools │ ├── base │ └── tool.ts │ ├── operations │ ├── broad_chunks_search.ts │ ├── catalog_search.ts │ └── chunks_search.ts │ └── registry.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiom-data/lance-mcp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiom-data/lance-mcp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiom-data/lance-mcp/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiom-data/lance-mcp/HEAD/package.json -------------------------------------------------------------------------------- /sample-docs/Chua_Kao-Ping_HealthCareSystemOverview_2006.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiom-data/lance-mcp/HEAD/sample-docs/Chua_Kao-Ping_HealthCareSystemOverview_2006.pdf -------------------------------------------------------------------------------- /sample-docs/Guide-to-U.S.-Healthcare-System.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiom-data/lance-mcp/HEAD/sample-docs/Guide-to-U.S.-Healthcare-System.pdf -------------------------------------------------------------------------------- /sample-docs/U_S_Health_System_Performance_A_National.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiom-data/lance-mcp/HEAD/sample-docs/U_S_Health_System_Performance_A_National.pdf -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiom-data/lance-mcp/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiom-data/lance-mcp/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/lancedb/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiom-data/lance-mcp/HEAD/src/lancedb/client.ts -------------------------------------------------------------------------------- /src/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiom-data/lance-mcp/HEAD/src/seed.ts -------------------------------------------------------------------------------- /src/tools/base/tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiom-data/lance-mcp/HEAD/src/tools/base/tool.ts -------------------------------------------------------------------------------- /src/tools/operations/broad_chunks_search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiom-data/lance-mcp/HEAD/src/tools/operations/broad_chunks_search.ts -------------------------------------------------------------------------------- /src/tools/operations/catalog_search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiom-data/lance-mcp/HEAD/src/tools/operations/catalog_search.ts -------------------------------------------------------------------------------- /src/tools/operations/chunks_search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiom-data/lance-mcp/HEAD/src/tools/operations/chunks_search.ts -------------------------------------------------------------------------------- /src/tools/registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiom-data/lance-mcp/HEAD/src/tools/registry.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiom-data/lance-mcp/HEAD/tsconfig.json --------------------------------------------------------------------------------