
Fieldnote MCP
Provides local-first memory storage and retrieval with automatic embedding, vector search, and knowledge graph capabilities. Enables agents to store memories locally and retrieve relevant context through hybrid search with optional Neo4j graph traversal.
README
Fieldnote MCP
Local‑first memory and a symmetrical knowledge graph you can clone, start, and use in minutes.
This repo gives any agent or app three superpowers:
- Auto‑store memory — drop text in, it’s embedded and saved locally.
- Auto‑recall & inject — retrieve relevant memories and assemble a ready‑to‑paste context block.
- Symmetrical Knowledge Graph — every memory can mirror into Neo4j with inverse edges for clean traversal.
It’s portable, version‑pinned, works on macOS/Linux/WSL/Windows, and never asks for root.
What’s inside
-
Qdrant (vector DB) + Neo4j (graph) via Docker Compose
-
Cross‑platform shims so the same commands work everywhere:
memory-store
,memory-search
,context-inject
,mcp-health
,qdrant-run
-
Hybrid retrieval (dense + optional sparse)
- Dense: MiniLM (pinned)
- Sparse (optional): BGE‑M3 if available, with hashing fallback so demos never block
-
Health gate to verify services before use
-
.env overrides to configure without touching code
Requirements
- Docker Desktop (macOS/Windows) or Docker Engine (Linux)
- Python 3.11+ (for local CLI tools)
- ~2GB free disk space for local data
No sudo needed. Everything lives in
~/dev/mcp
by default.
Quickstart (copy/paste)
macOS / Linux / WSL
# 0) place the repo at the expected path
mkdir -p ~/dev && cd ~/dev
# if you downloaded an archive, extract it to ~/dev/mcp; if using git:
# git clone <your-repo-url> mcp
cd ~/dev/mcp
# 1) bootstrap local env & command shims (idempotent)
./mcp-init.sh
# 2) env config (optional; overrides defaults)
cp .env.example .env
# edit .env as needed
# 3) start services
docker compose up -d
# 4) verify
make health
# 5) try the demo
make demo
Windows (PowerShell)
cd $HOME\dev\mcp
.\mcp-init.ps1
Copy-Item .env.example .env
# Edit .env if you want to change ports/creds
docker compose up -d
make health
make demo
Expected demo output:
memory-store
responds with{ "status": "ok", "id": "…" }
memory-search
prints top hits (hybrid if enabled)context-inject
prints a compact block of the highest‑scoring memories (ready to paste into an agent prompt)
Everyday commands
make compose-up
/make compose-down
/make compose-logs
– manage servicesmake health
– confirm Qdrant + Neo4j are reachable (and collection exists)make demo
– store → search → inject in one gomake clean-data
– wipe Qdrant storage;make clean-compose
also wipes Neo4jqdrant-run
– portable runner if you’re not using Compose (Linux/Docker fallback)
CLI shims installed to ~/dev/mcp/bin
:
memory-store
— embed + upsert to Qdrant, then mirror to KGmemory-search
— dense (and sparse if enabled) retrieval with optional KG symmetry expansioncontext-inject
— assembles a ready‑to‑paste context block from top memoriesmcp-health
— sanity check for Qdrant/Neo4j
Registered in plugins.json
so orchestrators can discover them.
Configure
All defaults live in config/memory.config.json
. Anything in .env overrides it at runtime.
.env keys (see .env.example
):
Key | Meaning | Default |
---|---|---|
QDRANT_URL |
Qdrant HTTP endpoint | http://127.0.0.1:6333 |
QDRANT_COLLECTION |
Collection name | fieldnote_memory |
DENSE_MODEL |
SentenceTransformer model | sentence-transformers/all-MiniLM-L6-v2 |
TOP_K |
Search results to return | 8 |
NEO4J_URI |
Bolt URI | bolt://127.0.0.1:7687 |
NEO4J_USER / NEO4J_PASS |
Neo4j credentials | neo4j / password |
INJ_MAX_TOKENS |
Max tokens to inject | 2000 |
INJ_SCORE_THRESHOLD |
Minimum similarity to include | 0.75 (recommended) |
SPARSE_ENABLED |
Enable sparse lane | true |
SPARSE_MODEL |
Sparse model | bge-m3 |
SPARSE_HASH_DIM |
Hashing fallback dim | 32768 |
Tip: If you enable sparse on an existing collection created without it, start fresh (rename the collection or run
make clean-compose
).
How it works
Store text ──▶ memory-store ──▶ Qdrant (dense [+ sparse])
│
└─▶ GraphSync hook ──▶ Neo4j (symmetrical edges)
Query ──▶ memory-search ──▶ Qdrant hybrid search
│
└─▶ optional KG symmetry expansion
Assemble ──▶ context-inject ──▶ compact, thresholded context block
- Symmetry: When a relation has a defined inverse (e.g.,
depends_on ↔ supports
), both directions are stored so traversals stay consistent. - Hybrid: If
SPARSE_ENABLED=true
, sparse vectors are stored alongside dense. If BGE‑M3 isn’t installed, a hashing fallback keeps hybrid functional.
Open Neo4j Browser at http://localhost:7474
to explore the graph. Qdrant Console is available via the API (:6333
).
Data & paths
- Qdrant data:
qdrant/storage/
- Neo4j data:
neo4j/data/
- Local venvs:
venv/
(Linux/macOS/WSL),win-venv/
(Windows) - PATH shims:
~/dev/mcp/bin
All are git‑ignored by default.
Troubleshooting
"connection refused" on health check
- Ensure Docker is running and
docker compose up -d
completed.
Ports already in use
- Change ports in
.env
/docker-compose.yml
or stop the conflicting service.
Windows symlink errors
- Enable Developer Mode, or replace symlinks with tiny
.cmd
wrappers that callpython
.
KG looks empty
- Run the demo (
make demo
) or start storing memories. Graph is populated by the post‑store hook.
Sparse/hybrid isn’t kicking in
- Confirm
SPARSE_ENABLED=true
. If BGE‑M3 isn’t available, the hashing fallback still enables hybrid queries.
Extend
- Typed relations: Enrich
hooks/graphsync_post_store.py
with light keyword rules or your own IE pipeline. - Keep models hot: Wrap store/search in a small FastAPI service (you already have
uvicorn
+fastapi
). - Provenance: Add
source_id
,confidence
to edges for auditing.
Security
- Don’t commit real credentials.
.env
is git‑ignored. - Everything runs locally by default; expose ports only if you know why.
License
Project Navi - Dual License
This software is dual-licensed:
Option A: GNU Affero General Public License v3.0 (AGPL-3.0)
- For open source use
- See https://www.gnu.org/licenses/agpl-3.0.html
Option B: Commercial License (PNEUL-D v2.2)
- For proprietary/closed-source use
- Contact legal@projectnavi.ai for licensing
Full license terms: /docs/legal/
Support
If something feels off, run:
make health
Then check docker compose logs
for qdrant
and neo4j
. Open an issue or ping your team with the logs.
推荐服务器

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 模型以安全和受控的方式获取实时的网络信息。