AAS LanceDB MCP Server
Provides AI agents with database-like operations over LanceDB with automatic BGE-M3 multilingual embedding generation, enabling semantic search, CRUD operations, and safe schema migrations across structured data.
README
AAS LanceDB MCP Server
A comprehensive Model Context Protocol (MCP) server that provides AI agents with database-like operations over LanceDB with automatic embedding generation using state-of-the-art BGE-M3 multilingual embeddings.
✨ Why This MCP Server?
- 🎯 Database-like Interface: Works like SQLite MCP - create tables, CRUD operations, migrations
- 🤖 Automatic Embeddings: BGE-M3 generates 1024D multilingual embeddings for searchable text
- 🔍 Semantic Search: Natural language search across your data using vector similarity
- 📊 Rich Resources: Dynamic database inspection (schemas, samples, statistics)
- 💡 Intelligent Prompts: AI guidance for schema design, optimization, troubleshooting
- 🛡️ Safe Migrations: Built-in table migration with validation and automatic backups
- 🌍 Multilingual: BGE-M3 provides excellent performance across 100+ languages
🚀 Quick Start
Install & Run with uvx (Recommended)
# Run directly without installation
uvx aas-lancedb-mcp --help
# Or install globally
uv tool install aas-lancedb-mcp
aas-lancedb-mcp --version
Install from Source
git clone https://github.com/applied-ai-systems/aas-lancedb-mcp.git
cd aas-lancedb-mcp
uv tool install .
🛠️ MCP Capabilities Overview
🔧 10 Database Tools
| Tool | Purpose | Example |
|---|---|---|
create_table |
Create tables with schema | Create products table with searchable descriptions |
list_tables |
Show all tables | Get overview of database contents |
describe_table |
Get table schema & info | Understand table structure and metadata |
drop_table |
Delete tables | Remove unused tables |
insert |
Add data (auto-embeddings) | Insert product with searchable description |
select |
Query with filtering/sorting | Find products by price range |
update |
Modify data (auto-embeddings) | Update product info with new description |
delete |
Remove rows by conditions | Delete discontinued products |
search |
Semantic text search | "Find sustainable products" → matches related items |
migrate_table |
Safe schema changes | Add columns or change structure safely |
📁 Dynamic Resources
Resources provide AI agents with real-time database insights:
lancedb://overview- Complete database statistics and table summarylancedb://tables/{name}/schema- Table schema, columns, searchable fieldslancedb://tables/{name}/sample- Sample data for understanding contentslancedb://tables/{name}/stats- Column statistics, data quality metrics
💬 5 Intelligent Prompts
AI-powered guidance for database operations:
analyze_table- Generate insights about data patterns and qualitydesign_schema- Help design optimal table schemas for use casesoptimize_queries- Performance optimization recommendationstroubleshoot_performance- Diagnose and solve database issuesmigration_planning- Plan safe schema migrations step-by-step
📋 Usage Examples
Creating a Product Catalog
{
"tool": "create_table",
"arguments": {
"schema": {
"name": "products",
"columns": [
{"name": "title", "type": "text", "required": true, "searchable": true},
{"name": "description", "type": "text", "searchable": true},
{"name": "price", "type": "float", "required": true},
{"name": "category", "type": "text", "required": true},
{"name": "metadata", "type": "json"}
],
"description": "E-commerce product catalog with semantic search"
}
}
}
Adding Products (Embeddings Generated Automatically)
{
"tool": "insert",
"arguments": {
"data": {
"table_name": "products",
"data": {
"title": "Eco-Friendly Water Bottle",
"description": "Sustainable stainless steel water bottle with insulation",
"price": 24.99,
"category": "sustainability",
"metadata": {"brand": "EcoLife", "material": "stainless_steel"}
}
}
}
}
Semantic Search (Natural Language)
{
"tool": "search",
"arguments": {
"query": {
"table_name": "products",
"query": "environmentally friendly drinking containers",
"limit": 5
}
}
}
Database Inspection (Resources)
{
"resource": "lancedb://tables/products/sample"
}
Returns sample product data for AI agents to understand the table structure.
AI Guidance (Prompts)
{
"prompt": "design_schema",
"arguments": {
"use_case": "Customer support ticket system",
"data_types": "ticket text, priority levels, timestamps",
"search_requirements": "semantic search across ticket descriptions"
}
}
Returns AI-generated recommendations for optimal table design.
⚙️ Configuration
Claude Desktop Setup
Add to claude_desktop_config.json:
{
"mcpServers": {
"aas-lancedb": {
"command": "aas-lancedb-mcp",
"args": ["--db-uri", "~/my_database"],
"env": {
"EMBEDDING_MODEL": "BAAI/bge-m3"
}
}
}
}
Environment Variables
export LANCEDB_URI="./my_database" # Database location
export EMBEDDING_MODEL="BAAI/bge-m3" # Embedding model (default)
export EMBEDDING_DEVICE="cpu" # cpu or cuda
Command Line Options
aas-lancedb-mcp --help # Show help
aas-lancedb-mcp --version # Show version
aas-lancedb-mcp --db-uri ./my_db # Custom database path
🏗️ Architecture
Enhanced MCP Server Architecture
├── 🔧 Tools (10) - Database operations (CRUD, search, migrate)
├── 📁 Resources (dynamic) - Real-time database introspection
├── 💬 Prompts (5) - AI guidance for database tasks
├── 🤖 BGE-M3 Embeddings - Automatic 1024D multilingual vectors
├── 🛡️ Safe Migrations - Schema evolution with validation
└── 📊 Rich Metadata - Column types, constraints, statistics
Key Technical Features
- 🎯 Database-like Interface: Familiar SQL-style operations hiding vector complexity
- 🤖 Automatic Embedding Generation: BGE-M3 creates vectors for searchable text columns
- 🔍 Hybrid Search: Combine semantic similarity with traditional filtering
- 📊 Dynamic Resources: Real-time database inspection for AI agents
- 💡 Contextual Prompts: AI guidance using actual database state
- 🛡️ Migration Safety: Backup, validate, and rollback capabilities
- 🌍 Multilingual: BGE-M3 excels across 100+ languages
🧪 Development & Testing
# Clone and setup
git clone https://github.com/applied-ai-systems/aas-lancedb-mcp.git
cd aas-lancedb-mcp
# Install dependencies
uv sync --all-extras
# Run tests
uv run pytest
# Run tests with coverage
uv run pytest --cov=src --cov-report=term-missing
# Format and lint
uv run ruff format .
uv run ruff check .
# Test CLI
uv run aas-lancedb-mcp --help
🚀 Performance & Scalability
- BGE-M3 Embeddings: 1024 dimensions, excellent multilingual performance
- LanceDB Backend: Columnar vector database optimized for scale
- Efficient Operations: Automatic embedding caching and batch processing
- Memory Management: Lazy loading and streaming for large datasets
- Search Performance: HNSW indexing for fast vector similarity search
🤝 Contributing
- Fork the repository
- Create feature branch (
git checkout -b feature/amazing-feature) - Make changes with tests (
pytest tests/) - Format code (
uv run ruff format .) - Submit Pull Request
📄 License
MIT License - see LICENSE file for details.
🙏 Acknowledgments
- LanceDB - High-performance columnar vector database
- BGE-M3 - State-of-the-art multilingual embeddings
- Model Context Protocol - Standardized AI tool integration
- Sentence Transformers - Easy-to-use embedding framework
📚 Related MCP Projects
- MCP Servers - Official MCP server collection
- FastMCP - Fast Pythonic MCP framework
- SQLite MCP - Database MCP inspiration
Ready to supercharge your AI agents with powerful database capabilities? 🚀
uvx aas-lancedb-mcp --help
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。