MCP Memory Libsql MCP Server

LibSQL-based persistent memory tool for MCP

Local serverstdio

What is the MCP Memory Libsql MCP server?

If you want an AI assistant working directly with MCP Memory Libsql, the mcp memory libsql mcp server is the bridge. LibSQL-based persistent memory tool for MCP.

What MCP Memory Libsql does

A high-performance, persistent memory system for the Model Context Protocol (MCP) powered by libSQL. This server provides vector search capabilities and efficient knowledge storage using libSQL as the backing store.

Key capabilities

  • 🚀 High-performance vector search using libSQL
  • 💾 Persistent storage of entities and relations
  • 🔍 Semantic search capabilities
  • 🔄 Knowledge graph management
  • 🌐 Compatible with local and remote libSQL databases
  • 🔒 Secure token-based authentication for remote databases

Tools it exposes

Once connected, the assistant can call this tool directly:

  • Publishing — Due to npm 2FA requirements, publishing needs to be done manually:

Installing the mcp memory libsql mcp server

The server is distributed via npm as mcp-memory-libsql, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.

Configuration

Before the server will start you need to supply 2 environment variables: LIBSQL_URL, LIBSQL_AUTH_TOKEN. Keep credentials in your client's env block or a secrets manager rather than committing them.

Where it fits

Knowledge and memory servers address the most frustrating trait of language models — walking into every conversation with no recollection of the last one. MCP Memory Libsql sits in that group, and the shape of its toolset — Publishing — tells you what it is really for. Worth comparing against the other knowledge memory servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • Maintained by joleyline.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the mcp memory libsql mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
PublishingDue to npm 2FA requirements, publishing needs to be done manually:

How to install the MCP Memory Libsql MCP server

{
	"mcpServers": {
		"mcp-memory-libsql": {
			"command": "npx",
			"args": ["-y", "mcp-memory-libsql"],
			"env": {
				"LIBSQL_URL": "file:/path/to/your/database.db"
			}
		}
	}
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
LIBSQL_URLEndpoint or connection string the server talks to.Yes
LIBSQL_AUTH_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use MCP Memory Libsql to Publishing.

Frequently asked questions

It connects MCP Memory Libsql to MCP-compatible AI assistants such as Claude and Cursor, exposing 1 tool (Publishing) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP Memory Libsql directly.