Lancedb Memory

MCP Server

by sundial-org · Added 5mo ago

Claude
33

Install

git clone https://github.com/sundial-org/awesome-openclaw-skills

Add to Claude

claude mcp add lancedb-memory

Quick 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

From Our Store

View all →
Toolkit

AI Coding Agent Blueprints

$49+

Workflow blueprints for AI coding agents

Claude Code

Claude Code Power User Kit

$39+

Advanced Claude Code skills and configurations