mem0-open-mcp 0.1.1__tar.gz → 0.1.2__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.
- mem0_open_mcp-0.1.2/.github/workflows/publish.yml +36 -0
- {mem0_open_mcp-0.1.1 → mem0_open_mcp-0.1.2}/PKG-INFO +7 -3
- {mem0_open_mcp-0.1.1 → mem0_open_mcp-0.1.2}/README.md +6 -2
- {mem0_open_mcp-0.1.1 → mem0_open_mcp-0.1.2}/pyproject.toml +1 -1
- {mem0_open_mcp-0.1.1 → mem0_open_mcp-0.1.2}/.env.example +0 -0
- {mem0_open_mcp-0.1.1 → mem0_open_mcp-0.1.2}/.gitignore +0 -0
- {mem0_open_mcp-0.1.1 → mem0_open_mcp-0.1.2}/Dockerfile +0 -0
- {mem0_open_mcp-0.1.1 → mem0_open_mcp-0.1.2}/docker-compose.yaml +0 -0
- {mem0_open_mcp-0.1.1 → mem0_open_mcp-0.1.2}/examples/ollama-config.yaml +0 -0
- {mem0_open_mcp-0.1.1 → mem0_open_mcp-0.1.2}/mem0-open-mcp.example.yaml +0 -0
- {mem0_open_mcp-0.1.1 → mem0_open_mcp-0.1.2}/src/mem0_server/__init__.py +0 -0
- {mem0_open_mcp-0.1.1 → mem0_open_mcp-0.1.2}/src/mem0_server/api/__init__.py +0 -0
- {mem0_open_mcp-0.1.1 → mem0_open_mcp-0.1.2}/src/mem0_server/api/routes.py +0 -0
- {mem0_open_mcp-0.1.1 → mem0_open_mcp-0.1.2}/src/mem0_server/cli.py +0 -0
- {mem0_open_mcp-0.1.1 → mem0_open_mcp-0.1.2}/src/mem0_server/config/__init__.py +0 -0
- {mem0_open_mcp-0.1.1 → mem0_open_mcp-0.1.2}/src/mem0_server/config/loader.py +0 -0
- {mem0_open_mcp-0.1.1 → mem0_open_mcp-0.1.2}/src/mem0_server/config/schema.py +0 -0
- {mem0_open_mcp-0.1.1 → mem0_open_mcp-0.1.2}/src/mem0_server/mcp/__init__.py +0 -0
- {mem0_open_mcp-0.1.1 → mem0_open_mcp-0.1.2}/src/mem0_server/mcp/server.py +0 -0
- {mem0_open_mcp-0.1.1 → mem0_open_mcp-0.1.2}/src/mem0_server/server.py +0 -0
- {mem0_open_mcp-0.1.1 → mem0_open_mcp-0.1.2}/src/mem0_server/utils/__init__.py +0 -0
- {mem0_open_mcp-0.1.1 → mem0_open_mcp-0.1.2}/tests/test_api.py +0 -0
- {mem0_open_mcp-0.1.1 → mem0_open_mcp-0.1.2}/tests/test_config.py +0 -0
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
name: Publish to PyPI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags:
|
|
6
|
+
- 'v*'
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
publish:
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
environment: pypi
|
|
12
|
+
permissions:
|
|
13
|
+
id-token: write
|
|
14
|
+
contents: write
|
|
15
|
+
steps:
|
|
16
|
+
- uses: actions/checkout@v4
|
|
17
|
+
|
|
18
|
+
- name: Set up Python
|
|
19
|
+
uses: actions/setup-python@v5
|
|
20
|
+
with:
|
|
21
|
+
python-version: "3.11"
|
|
22
|
+
|
|
23
|
+
- name: Install build tools
|
|
24
|
+
run: pip install build
|
|
25
|
+
|
|
26
|
+
- name: Build package
|
|
27
|
+
run: python -m build
|
|
28
|
+
|
|
29
|
+
- name: Publish to PyPI
|
|
30
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
31
|
+
|
|
32
|
+
- name: Create GitHub Release
|
|
33
|
+
uses: softprops/action-gh-release@v2
|
|
34
|
+
with:
|
|
35
|
+
generate_release_notes: true
|
|
36
|
+
files: dist/*
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mem0-open-mcp
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Open-source MCP server for mem0 - local LLMs, self-hosted, Docker-free
|
|
5
5
|
Author: Alex
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -59,10 +59,14 @@ Created because the official `mem0-mcp` configuration wasn't working properly fo
|
|
|
59
59
|
|
|
60
60
|
### Installation
|
|
61
61
|
|
|
62
|
-
|
|
62
|
+
```bash
|
|
63
|
+
pip install mem0-open-mcp
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
Or install from source:
|
|
63
67
|
|
|
64
68
|
```bash
|
|
65
|
-
git clone https://github.com/
|
|
69
|
+
git clone https://github.com/wonseoko/mem0-open-mcp.git
|
|
66
70
|
cd mem0-open-mcp
|
|
67
71
|
pip install -e .
|
|
68
72
|
```
|
|
@@ -18,10 +18,14 @@ Created because the official `mem0-mcp` configuration wasn't working properly fo
|
|
|
18
18
|
|
|
19
19
|
### Installation
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
```bash
|
|
22
|
+
pip install mem0-open-mcp
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
Or install from source:
|
|
22
26
|
|
|
23
27
|
```bash
|
|
24
|
-
git clone https://github.com/
|
|
28
|
+
git clone https://github.com/wonseoko/mem0-open-mcp.git
|
|
25
29
|
cd mem0-open-mcp
|
|
26
30
|
pip install -e .
|
|
27
31
|
```
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|