mem0-open-mcp 0.1.9__py3-none-any.whl → 0.1.10__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mem0-open-mcp
3
- Version: 0.1.9
3
+ Version: 0.1.10
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
@@ -1,15 +1,15 @@
1
1
  mem0_server/__init__.py,sha256=FrcCqmcA_VSR57xjgdQ1obSrsSzxDsDsXdEGSdVhUq0,379
2
- mem0_server/cli.py,sha256=5XKhq2QdNQCH1yPlLEal_0jcee6QEOjuhA-c6HqmX2s,29308
2
+ mem0_server/cli.py,sha256=GXnxaUGtoPcnU7L2SdVZH-0mqwFcMKhBgaYxcWTl16M,29319
3
3
  mem0_server/server.py,sha256=Obc2eZaAYuZdUgYpOY8qWwbOXgc3w1vRmmEF3tc0gdI,12494
4
4
  mem0_server/api/__init__.py,sha256=JOOnrq3v7yym3xotMkOUAoZj1zjhI8C_a1wEdbpCakQ,122
5
5
  mem0_server/api/routes.py,sha256=fBOeQ1kckEa9Nr57cutCunhG9D1J5zYrv9sFiYcZ1yQ,21743
6
6
  mem0_server/config/__init__.py,sha256=Z0GWnr8I7VbrUfVLeA37K9qHOsK7HJOHiGELbWp8YcI,733
7
- mem0_server/config/loader.py,sha256=0z_huOq1NS4reGEKDySj8RJf1ou_v5LcQtK4LVafX8w,8337
7
+ mem0_server/config/loader.py,sha256=kWSHtSr_gOnpb7LT5XxV5CkreAA-Fa3fUGwt82q0jP8,8359
8
8
  mem0_server/config/schema.py,sha256=HnFWUR4KxwHkyukFw_ptMCHt7K26Zl7AU02-5jdtjL4,12731
9
9
  mem0_server/mcp/__init__.py,sha256=8BWWjlJj5_jdeUuQFN4i5hm5Zd3Pk0cCR2Vf0G4eUB4,127
10
10
  mem0_server/mcp/server.py,sha256=Y_f8upEtvjr0JjZaUQ4YWLRrof9btR2ds8FL2DucCZI,184
11
11
  mem0_server/utils/__init__.py,sha256=GvVR3Tz4OmU2gRGCbTyQg5Xip5cAx7KW6ToIh2sKA4w,41
12
- mem0_open_mcp-0.1.9.dist-info/METADATA,sha256=PELs2oUxbtGLi7evz6wOkK_TRV2zeOnb3IV6XpSnewQ,4908
13
- mem0_open_mcp-0.1.9.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
14
- mem0_open_mcp-0.1.9.dist-info/entry_points.txt,sha256=WXqVdvwhFvMkzAmNtdlHlRZV23yikM43BtB8S4F9ByE,54
15
- mem0_open_mcp-0.1.9.dist-info/RECORD,,
12
+ mem0_open_mcp-0.1.10.dist-info/METADATA,sha256=V7RXLtNpeUHjRKSl_j5N9PMcq4AzKNbHn-zzuNlZLtI,4909
13
+ mem0_open_mcp-0.1.10.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
14
+ mem0_open_mcp-0.1.10.dist-info/entry_points.txt,sha256=WXqVdvwhFvMkzAmNtdlHlRZV23yikM43BtB8S4F9ByE,54
15
+ mem0_open_mcp-0.1.10.dist-info/RECORD,,
mem0_server/cli.py CHANGED
@@ -783,7 +783,7 @@ def init(
783
783
  mem0-open-mcp init ./config.yaml
784
784
  mem0-open-mcp init --force
785
785
  """
786
- default_path = Path.home() / ".mem0-open-mcp.yaml"
786
+ default_path = Path.home() / ".config" / "mem0-open-mcp.yaml"
787
787
  target_path = path if path else default_path
788
788
 
789
789
  if target_path.exists() and not force:
@@ -28,12 +28,12 @@ class ConfigLoader:
28
28
  """Load and save mem0-server configuration from various sources."""
29
29
 
30
30
  DEFAULT_CONFIG_PATHS = [
31
- Path.home() / ".mem0-open-mcp.yaml",
31
+ Path.home() / ".config" / "mem0-open-mcp.yaml",
32
+ Path.home() / ".config" / "mem0-open-mcp.yml",
33
+ Path.home() / ".config" / "mem0-open-mcp.json",
32
34
  Path("mem0-open-mcp.yaml"),
33
35
  Path("mem0-open-mcp.yml"),
34
36
  Path("mem0-open-mcp.json"),
35
- Path.home() / ".config" / "mem0-open-mcp" / "config.yaml",
36
- Path("mem0-server.yml"),
37
37
  ]
38
38
 
39
39
  def __init__(self, config_path: Path | str | None = None):