MCP Servers

模型上下文协议服务器、框架、SDK 和模板的综合目录。

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
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)
  • search_memory
    • Inputs: query (string), limit (optional number, default 5, max 50)
    • Ranking: |bm25| * (1 / (1 + 0.05 * ageInDays))

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" ] } } }