S
Simple Memory MCP
作者 @mrorigo
Personal memory MCP server backed by SQLite FTS5 BM25 search with temporal reranking.
创建于 3/2/2026
更新于 about 2 hours ago
README
Repository documentation and setup instructions
simple-memory-mcp
Personal memory MCP server backed by SQLite FTS5 BM25 search with temporal reranking.
Setup
bun install
Run
bun run start
The server uses stdio transport and creates memory.db in the project root.
Run From GitHub With bunx
bunx --bun github:mrorigo/simple-memory-mcp#main
Because of the bin entry, this starts the simple-memory-mcp CLI directly.
For MCP client configuration (example):
{
"mcpServers": {
"simple_memory": {
"command": "bunx",
"args": ["--bun", "github:mrorigo/simple=memory-mcp#main"]
}
}
}
Tools
ingest_document- Inputs:
filename(string),content(string),attribution(optional string)
- Inputs:
search_memory- Inputs:
query(string),limit(optional number, default5, max50) - Ranking:
|bm25| * (1 / (1 + 0.05 * ageInDays))
- Inputs:
Verify
bun test
bun run typecheck
bun run smoke
快速设置
此服务器的安装指南
安装包 (如果需要)
npx @modelcontextprotocol/server-simple-memory-mcp
Cursor 配置 (mcp.json)
{
"mcpServers": {
"mrorigo-simple-memory-mcp": {
"command": "npx",
"args": [
"mrorigo-simple-memory-mcp"
]
}
}
}
作者服务器
其他服务器由 mrorigo