mcp-ltm
Provides persistent long-term memory for AI assistants with tag-based retrieval, wiki-style linking, and source references, storing memories as markdown files with SQLite index.
README
mcp-ltm: Long-Term Memory for LLMs
An MCP server that provides persistent long-term memory for AI assistants. Memories are stored as browsable markdown files with a SQLite index for fast tag-based retrieval.
Features
- Tag-based retrieval: Store and query memories using tags, ranked by overlap
- Human-browsable: Memories stored as markdown files with YAML frontmatter
- Tag co-occurrence: Discover related tags based on how often they appear together
- Memory linking: Create wiki-style links between related memories
- Source references: Link memories to external documents with origin-based path management
- Access tracking: Track when and how often memories are accessed for pruning
Installation
pip install -e .
Configuration
Add to your Claude Code MCP settings (~/.claude.json):
{
"mcpServers": {
"ltm": {
"command": "mcp-ltm",
"env": {
"MCP_LTM_PATH": "/path/to/memories",
"MCP_LTM_CONFIG": "/path/to/config.yaml"
}
}
}
}
Default paths (if env vars not set):
- Memories:
~/.local/share/mcp-ltm/memories/ - Config:
~/.local/share/mcp-ltm/config.yaml
Tools
Memory Operations
- store_memory - Create memory with title, tags, summary, content, optional source/links
- query_memories - Search by tags (ranked by overlap), filter by required_tags
- get_memory - Retrieve by ID (updates access stats)
- update_memory - Modify existing memory
- delete_memory - Remove memory
- get_stale_memories - Find old, rarely-accessed memories for pruning
Tag Operations
- get_tags - List all tags with usage counts and example summaries
- get_related_tags - Find tags that frequently co-occur (for query expansion)
Origin Management
- list_origins - Show configured origin directories
- add_origin - Register origin (auto-contracts existing matching sources)
- remove_origin - Delete origin mapping
Origins: Managing Source Paths
Origins let you use short paths like myproject:docs/file.md instead of full absolute paths.
Config file (~/.local/share/mcp-ltm/config.yaml):
origins:
myproject: /home/user/projects/myproject
notes: /home/user/notes
When storing a memory with a source:
- Full paths matching an origin are automatically contracted
- When retrieving, paths are expanded back to full paths
- Makes memories portable and readable
Storage Format
Each memory is a markdown file with YAML frontmatter:
---
id: example-memory-title
title: Example Memory Title
tags: [python, debugging, testing]
summary: Brief description of what this memory contains.
source: myproject:docs/example.md
created_at: 2026-01-15T10:30:00Z
accessed_at: 2026-01-20T14:00:00Z
access_count: 3
links: [related-memory-id]
---
# Example Memory Title
Full content here. Can link to [other memories](related-memory-id.md).
The SQLite index (index.db) stores metadata for fast querying but can be rebuilt from the markdown files if needed.
Tag Conventions
Tags are normalized: lowercase, spaces become hyphens, punctuation stripped (except colons for namespacing).
Suggested prefixes:
type:- Memory type (decision, insight, preference, fact, reference)project:- Project nametopic:- Subject area
Usage Patterns
Pure Memory
Self-contained insight with no external reference:
store_memory(
title="Python Dict Merge Operator",
tags=["python", "syntax"],
summary="Python 3.9+ supports d1 | d2 to merge dicts.",
content="Use `d1 | d2` to merge dictionaries..."
)
Reference Memory
Summary pointing to detailed external document:
store_memory(
title="Project Architecture Overview",
tags=["project:foo", "architecture"],
summary="Key architectural decisions for the Foo project.",
content="Main insight: use event sourcing for audit trail...",
source="/path/to/architecture.md"
)
License
MIT License - see LICENSE for details.
推荐服务器
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 模型以安全和受控的方式获取实时的网络信息。