-
Notifications
You must be signed in to change notification settings - Fork 136
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (74 loc) · 2.12 KB
/
pyproject.toml
File metadata and controls
86 lines (74 loc) · 2.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[build-system]
requires = ["hatchling>=1.27.0"]
build-backend = "hatchling.build"
[project]
name = "mem0-mcp-server-alfonsodg"
version = "0.2.3"
description = "Model Context Protocol server that exposes the Mem0 long-term memory API as tools"
readme = "README.md"
license = {text = "Apache-2.0"}
authors = [{name = "Mem0"}]
requires-python = ">=3.10"
keywords = [
"mcp",
"mem0",
"memory",
"agents",
"tooling",
"llm",
"anthropic",
"claude",
]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Typing :: Typed",
]
dependencies = [
"mcp[cli]>=1.6.0",
"mem0ai>=1.0.1",
"python-dotenv>=1.2.1",
"requests>=2.32.5",
"pydantic-ai-slim[mcp]>=1.14.1",
"smithery>=0.4.2",
]
[project.urls]
Homepage = "https://mem0.ai"
Repository = "https://github.com/mem0ai/mem0-mcp"
Documentation = "https://docs.mem0.ai"
[project.optional-dependencies]
agent = ["pydantic-ai-slim[mcp]>=1.14.1", "python-dotenv>=1.2.1"]
[dependency-groups]
dev = [
"pytest>=8.3.4",
"ruff>=0.7.0",
"mypy>=1.18.2",
]
[project.scripts]
mem0-mcp-server = "mem0_mcp_server.server:main"
dev = "smithery.cli.dev:main"
start = "smithery.cli.start:main"
playground = "smithery.cli.playground:main"
[project.entry-points."mcp.servers"]
mem0 = "mem0_mcp_server:mcp.json"
[tool.smithery]
server = "mem0_mcp_server.server:create_server"
[tool.hatch.build.targets.wheel]
packages = ["src/mem0_mcp_server"]
[tool.hatch.build.targets.wheel.shared-data]
"src/mem0_mcp_server/mcp.json" = "share/mcp/servers/mem0-mcp-server.json"
"src/mem0_mcp_server/py.typed" = "mem0_mcp_server/py.typed"
"src/mem0_mcp_server/config.json" = "share/mcp/configs/mem0-mcp-server.json"
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.mypy]
python_version = "3.10"
strict = true