better-mem0-mcp 1.1.5__py3-none-any.whl → 1.1.6__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {better_mem0_mcp-1.1.5.dist-info → better_mem0_mcp-1.1.6.dist-info}/METADATA +53 -28
- {better_mem0_mcp-1.1.5.dist-info → better_mem0_mcp-1.1.6.dist-info}/RECORD +5 -5
- {better_mem0_mcp-1.1.5.dist-info → better_mem0_mcp-1.1.6.dist-info}/WHEEL +0 -0
- {better_mem0_mcp-1.1.5.dist-info → better_mem0_mcp-1.1.6.dist-info}/entry_points.txt +0 -0
- {better_mem0_mcp-1.1.5.dist-info → better_mem0_mcp-1.1.6.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: better-mem0-mcp
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.6
|
|
4
4
|
Summary: Zero-setup MCP Server for AI memory - works with Neon/Supabase
|
|
5
5
|
Project-URL: Homepage, https://github.com/n24q02m/better-mem0-mcp
|
|
6
6
|
Project-URL: Repository, https://github.com/n24q02m/better-mem0-mcp.git
|
|
@@ -29,16 +29,28 @@ Description-Content-Type: text/markdown
|
|
|
29
29
|
|
|
30
30
|
# better-mem0-mcp
|
|
31
31
|
|
|
32
|
-
**
|
|
32
|
+
**Self-hosted MCP Server for AI memory with PostgreSQL (pgvector).**
|
|
33
33
|
|
|
34
|
-
[](https://pypi.org/project/better-mem0-mcp/)
|
|
35
|
+
[](https://hub.docker.com/r/n24q02m/better-mem0-mcp)
|
|
36
|
+
[](LICENSE)
|
|
37
|
+
|
|
38
|
+
## Features
|
|
39
|
+
|
|
40
|
+
- **Self-hosted PostgreSQL** - Your data stays with you (Neon/Supabase free tier supported)
|
|
41
|
+
- **Graph Memory** - SQL-based relationship tracking alongside vector memory
|
|
42
|
+
- **Multi-provider LLM** - Gemini, OpenAI, Anthropic, Groq, DeepSeek, Mistral
|
|
43
|
+
- **Fallback chains** - Multi-key per provider + multi-model fallback
|
|
44
|
+
- **Zero manual setup** - Just `DATABASE_URL` + `API_KEYS`
|
|
45
|
+
|
|
46
|
+
---
|
|
35
47
|
|
|
36
48
|
## Quick Start
|
|
37
49
|
|
|
38
50
|
### 1. Get Prerequisites
|
|
39
51
|
|
|
40
|
-
- **Database**: [Neon](https://neon.tech) or [Supabase](https://supabase.com) (free tier)
|
|
41
|
-
- **API Key**: [Google AI Studio](https://aistudio.google.com/apikey)
|
|
52
|
+
- **Database**: [Neon](https://neon.tech) or [Supabase](https://supabase.com) (free tier works)
|
|
53
|
+
- **API Key**: Any supported provider ([Google AI Studio](https://aistudio.google.com/apikey) is free)
|
|
42
54
|
|
|
43
55
|
### 2. Add to mcp.json
|
|
44
56
|
|
|
@@ -78,7 +90,7 @@ Description-Content-Type: text/markdown
|
|
|
78
90
|
|
|
79
91
|
### 3. Done!
|
|
80
92
|
|
|
81
|
-
Ask
|
|
93
|
+
Ask your AI: "Remember that I prefer dark mode and use FastAPI"
|
|
82
94
|
|
|
83
95
|
---
|
|
84
96
|
|
|
@@ -86,22 +98,26 @@ Ask Claude: "Remember that I prefer dark mode and use FastAPI"
|
|
|
86
98
|
|
|
87
99
|
| Variable | Required | Description |
|
|
88
100
|
|----------|----------|-------------|
|
|
89
|
-
| `DATABASE_URL` | Yes | PostgreSQL
|
|
90
|
-
| `API_KEYS` | Yes | `provider:key
|
|
91
|
-
| `LLM_MODELS` | No |
|
|
92
|
-
| `EMBEDDER_MODELS` | No |
|
|
101
|
+
| `DATABASE_URL` | Yes | PostgreSQL with pgvector extension |
|
|
102
|
+
| `API_KEYS` | Yes | `provider:key` pairs, comma-separated |
|
|
103
|
+
| `LLM_MODELS` | No | Model fallback chain |
|
|
104
|
+
| `EMBEDDER_MODELS` | No | Embedding model chain |
|
|
105
|
+
|
|
106
|
+
### Supported Providers
|
|
107
|
+
|
|
108
|
+
`gemini`, `openai`, `anthropic`, `groq`, `deepseek`, `mistral`
|
|
93
109
|
|
|
94
110
|
### Examples
|
|
95
111
|
|
|
96
|
-
**
|
|
97
|
-
```
|
|
112
|
+
**Single provider:**
|
|
113
|
+
```bash
|
|
98
114
|
API_KEYS=gemini:AIza...
|
|
99
115
|
```
|
|
100
116
|
|
|
101
117
|
**Multi-key with fallback:**
|
|
102
|
-
```
|
|
118
|
+
```bash
|
|
103
119
|
API_KEYS=gemini:AIza-1,gemini:AIza-2,openai:sk-xxx
|
|
104
|
-
LLM_MODELS=gemini/gemini-
|
|
120
|
+
LLM_MODELS=gemini/gemini-3-flash-preview,openai/gpt-4o-mini
|
|
105
121
|
EMBEDDER_MODELS=gemini/gemini-embedding-001,openai/text-embedding-3-small
|
|
106
122
|
```
|
|
107
123
|
|
|
@@ -109,7 +125,7 @@ EMBEDDER_MODELS=gemini/gemini-embedding-001,openai/text-embedding-3-small
|
|
|
109
125
|
|
|
110
126
|
| Setting | Default |
|
|
111
127
|
|---------|---------|
|
|
112
|
-
| `LLM_MODELS` | `gemini/gemini-
|
|
128
|
+
| `LLM_MODELS` | `gemini/gemini-3-flash-preview` |
|
|
113
129
|
| `EMBEDDER_MODELS` | `gemini/gemini-embedding-001` |
|
|
114
130
|
|
|
115
131
|
---
|
|
@@ -118,32 +134,41 @@ EMBEDDER_MODELS=gemini/gemini-embedding-001,openai/text-embedding-3-small
|
|
|
118
134
|
|
|
119
135
|
| Tool | Description |
|
|
120
136
|
|------|-------------|
|
|
121
|
-
| `memory` | `
|
|
122
|
-
| `help` |
|
|
137
|
+
| `memory` | Memory operations: `add`, `search`, `list`, `delete` |
|
|
138
|
+
| `help` | Get full documentation for tools |
|
|
123
139
|
|
|
124
|
-
### Usage
|
|
140
|
+
### Usage Examples
|
|
125
141
|
|
|
126
142
|
```json
|
|
127
143
|
{"action": "add", "content": "I prefer TypeScript over JavaScript"}
|
|
128
|
-
{"action": "search", "query": "preferences"}
|
|
144
|
+
{"action": "search", "query": "programming preferences"}
|
|
129
145
|
{"action": "list"}
|
|
130
146
|
{"action": "delete", "memory_id": "abc123"}
|
|
131
147
|
```
|
|
132
148
|
|
|
133
149
|
---
|
|
134
150
|
|
|
135
|
-
##
|
|
151
|
+
## Build from Source
|
|
152
|
+
|
|
153
|
+
```bash
|
|
154
|
+
git clone https://github.com/n24q02m/better-mem0-mcp
|
|
155
|
+
cd better-mem0-mcp
|
|
136
156
|
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
157
|
+
# Setup (requires mise: https://mise.jdx.dev/)
|
|
158
|
+
mise run setup
|
|
159
|
+
|
|
160
|
+
# Run
|
|
161
|
+
uv run better-mem0-mcp
|
|
162
|
+
```
|
|
163
|
+
|
|
164
|
+
**Requirements:** Python 3.13+
|
|
144
165
|
|
|
145
166
|
---
|
|
146
167
|
|
|
168
|
+
## Contributing
|
|
169
|
+
|
|
170
|
+
See [CONTRIBUTING.md](CONTRIBUTING.md)
|
|
171
|
+
|
|
147
172
|
## License
|
|
148
173
|
|
|
149
|
-
MIT
|
|
174
|
+
MIT - See [LICENSE](LICENSE)
|
|
@@ -5,8 +5,8 @@ better_mem0_mcp/graph.py,sha256=rE9z6XECiAktEqDNgmwqCpFpvKSn3azO9H4sRBhj8UU,6195
|
|
|
5
5
|
better_mem0_mcp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
6
|
better_mem0_mcp/server.py,sha256=QYLP46pz0U9gkxQKB_g8FMga77ywElMMjSCU-hGZQ-M,5499
|
|
7
7
|
better_mem0_mcp/docs/memory.md,sha256=198dDuAGccG5Ca7rhEXIU03ZhxNKK44B_Brl2glurGc,1608
|
|
8
|
-
better_mem0_mcp-1.1.
|
|
9
|
-
better_mem0_mcp-1.1.
|
|
10
|
-
better_mem0_mcp-1.1.
|
|
11
|
-
better_mem0_mcp-1.1.
|
|
12
|
-
better_mem0_mcp-1.1.
|
|
8
|
+
better_mem0_mcp-1.1.6.dist-info/METADATA,sha256=g0v4rbGy4eUlqCMCgxOSralR0r80Lmp4RU97oDTjYL4,4540
|
|
9
|
+
better_mem0_mcp-1.1.6.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
10
|
+
better_mem0_mcp-1.1.6.dist-info/entry_points.txt,sha256=2b7E3D6yo94mQXP2Ms0bhUlWkK9f664f0GrstImOq30,57
|
|
11
|
+
better_mem0_mcp-1.1.6.dist-info/licenses/LICENSE,sha256=d7xQ6sRyeGus6gnvwgqiQtSY7XdFw0Jd0w5-Co_xHnk,1064
|
|
12
|
+
better_mem0_mcp-1.1.6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|