mem-brain-mcp 1.0.8__tar.gz → 1.1.0__tar.gz

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.
@@ -50,3 +50,8 @@ generated_icons/
50
50
 
51
51
  # Logs
52
52
  *.log
53
+
54
+ # Environment files (never commit secrets)
55
+ .env
56
+ .env.*
57
+ !.env.example
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mem-brain-mcp
3
- Version: 1.0.8
3
+ Version: 1.1.0
4
4
  Summary: MCP Server for Mem-Brain API - Exposes memory operations as MCP tools
5
5
  Keywords: ai,claude,cursor,llm,mcp,memory,model-context-protocol
6
6
  Classifier: Development Status :: 4 - Beta
@@ -194,15 +194,40 @@ For detailed instructions, see [aws/DEPLOYMENT.md](./aws/DEPLOYMENT.md).
194
194
  pytest
195
195
  ```
196
196
 
197
- ### Build and Publish
197
+ ### Build and Publish to PyPI
198
+
199
+ **Prerequisites:** Ensure you have a PyPI account and your credentials are configured in `~/.pypirc`.
200
+
201
+ **Step-by-step deployment:**
202
+
198
203
  ```bash
199
- # Build the wheel
200
- python3 -m build
204
+ # 1. Activate the virtual environment
205
+ cd mem-brain-mcp
206
+ source .venv/bin/activate
207
+
208
+ # 2. Update version in pyproject.toml
209
+ # Edit pyproject.toml and increment the version number (e.g., 1.0.8 -> 1.0.9)
210
+
211
+ # 3. Clean old builds
212
+ rm -rf dist/*
213
+
214
+ # 4. Build the package
215
+ python -m build
201
216
 
202
- # Upload to PyPI
217
+ # 5. Upload to PyPI using twine
203
218
  twine upload dist/*
204
219
  ```
205
220
 
221
+ **Quick deployment (one-liner after version bump):**
222
+ ```bash
223
+ source .venv/bin/activate && rm -rf dist/* && python -m build && twine upload dist/*
224
+ ```
225
+
226
+ **Verify deployment:**
227
+ ```bash
228
+ pip3 index versions mem-brain-mcp
229
+ ```
230
+
206
231
  ## License
207
232
 
208
233
  Same as Mem-Brain API project.
@@ -168,15 +168,40 @@ For detailed instructions, see [aws/DEPLOYMENT.md](./aws/DEPLOYMENT.md).
168
168
  pytest
169
169
  ```
170
170
 
171
- ### Build and Publish
171
+ ### Build and Publish to PyPI
172
+
173
+ **Prerequisites:** Ensure you have a PyPI account and your credentials are configured in `~/.pypirc`.
174
+
175
+ **Step-by-step deployment:**
176
+
172
177
  ```bash
173
- # Build the wheel
174
- python3 -m build
178
+ # 1. Activate the virtual environment
179
+ cd mem-brain-mcp
180
+ source .venv/bin/activate
181
+
182
+ # 2. Update version in pyproject.toml
183
+ # Edit pyproject.toml and increment the version number (e.g., 1.0.8 -> 1.0.9)
184
+
185
+ # 3. Clean old builds
186
+ rm -rf dist/*
187
+
188
+ # 4. Build the package
189
+ python -m build
175
190
 
176
- # Upload to PyPI
191
+ # 5. Upload to PyPI using twine
177
192
  twine upload dist/*
178
193
  ```
179
194
 
195
+ **Quick deployment (one-liner after version bump):**
196
+ ```bash
197
+ source .venv/bin/activate && rm -rf dist/* && python -m build && twine upload dist/*
198
+ ```
199
+
200
+ **Verify deployment:**
201
+ ```bash
202
+ pip3 index versions mem-brain-mcp
203
+ ```
204
+
180
205
  ## License
181
206
 
182
207
  Same as Mem-Brain API project.
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "mem-brain-mcp"
3
- version = "1.0.8"
3
+ version = "1.1.0"
4
4
  description = "MCP Server for Mem-Brain API - Exposes memory operations as MCP tools"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10,<3.14"