https://github.com/5queezer/distill
Privacy-first team memory MCP server โ local LLM distillation before team sync
https://github.com/5queezer/distill
Last synced: 2 months ago
JSON representation
Privacy-first team memory MCP server โ local LLM distillation before team sync
- Host: GitHub
- URL: https://github.com/5queezer/distill
- Owner: 5queezer
- Created: 2026-03-14T22:31:32.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2026-03-15T16:45:29.000Z (3 months ago)
- Last Synced: 2026-03-16T04:14:42.810Z (3 months ago)
- Language: Python
- Size: 292 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ๐งช Distill
[](https://github.com/5queezer/distill/actions/workflows/ci.yml)

[](LICENSE)
An MCP server that gives Claude Code a shared team knowledge base โ a local LLM transforms your raw input into anonymous, factual knowledge *before* anything leaves your device.
No author. No frustration. No names. Just a clean, reusable fact.


## Quick Start
```bash
pip install distill-mcp
ollama pull gemma3:4b && ollama pull nomic-embed-text
claude mcp add distill -- python -m distill_mcp
```
Then in Claude Code:
```
You: "No, we don't use REST here. We switched to gRPC last month."
Claude: [saves to distill]
Got it. I've noted that the team uses gRPC, not REST.
... next session, different repo ...
You: "Set up the API for this new service."
Claude: [searches distill โ finds gRPC decision]
Based on your team's knowledge, I'll set up a gRPC
service since the team switched from REST last month.
```
Distill saves when you correct a mistake or make a decision, and searches before proposing architecture โ no prompting needed.
## What makes this different
Every "memory MCP" stores your raw text in a database. Distill doesn't. The local LLM is a mandatory privacy gateway that transforms personal thoughts into impersonal team knowledge.
| | Raw stays local | LLM distills | Team sync | Platform agnostic |
|--|----------------|-------------|-----------|-------------------|
| Claude-Mem | Partial (`` opt-out) | Cloud API compresses | Single-user | Claude Code only |
| Cipher | No | No | Yes | No |
| Supermemory | No | No | Yes | No |
| Mem0 | Yes | No | No | Yes |
| Memctl | Yes | No | Yes | Yes |
| **Distill** | **Yes** | **Yes** | **Yes** | **Yes** |
Based on public documentation as of March 2026.
## Documentation
- [Getting Started](https://5queezer.github.io/distill/tutorials/getting-started/) โ full tutorial
- [Installation](https://5queezer.github.io/distill/how-to/installation/) โ all setup options
- [GCP Backend](https://5queezer.github.io/distill/how-to/gcp-backend/) โ team-shared database
- [MCP Tools](https://5queezer.github.io/distill/reference/tools/) โ all 8 tools
- [Configuration](https://5queezer.github.io/distill/reference/configuration/) โ environment variables
- [Architecture](https://5queezer.github.io/distill/explanation/architecture/) โ Clean Architecture design
- [Privacy Model](https://5queezer.github.io/distill/explanation/privacy-model/) โ how your data stays private
## Development
```bash
git clone https://github.com/5queezer/distill.git
cd distill
uv sync
uv run pytest tests/ -x -v
```
## License
[MIT](LICENSE)