Lancedb Memory
MCP Serverby sundial-org · Added 5mo ago
Claude
33
Install
git clone https://github.com/sundial-org/awesome-openclaw-skillsAdd to Claude
claude mcp add lancedb-memoryQuick Setup Config
Copy & paste ready~/Library/Application Support/Claude/claude_desktop_config.json (macOS) %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"lancedb-memory": {
"command": "npx",
"args": [
"@modelcontextprotocol/lancedb-memory"
]
}
}
}Paste into your Claude Desktop config file, then restart Claude.
About
""" LanceDB integration for long-term memory management. Provides vector search and semantic memory capabilities. """ import os import json import lancedb from datetime import datetime from typing import List, Dict, Any, Optional from pathlib import Path class LanceMemoryDB: """LanceDB wrapper for long-term memory storage and retrieval.""" def init(self, db_path: str = "/Users/prerak/clawd/memory/lancedb"): self.db_path = Path(db_path) self.db_path.mkdir(parents=True, exist_ok=True) self....
Tags
ai-mlpythongotestingdatabaseskill