Skip to content

Commit 6b7623d

Browse files
MasihMoaficlaude
andcommitted
chore: Rename package to rag-mem for PyPI
memory-mcp was already taken on PyPI. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 08f20dc commit 6b7623d

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

packages/memory-mcp/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Memory MCP
1+
# rag-mem
22

33
RAG and Memory tools exposed via Model Context Protocol (MCP).
44

@@ -24,19 +24,19 @@ RAG and Memory tools exposed via Model Context Protocol (MCP).
2424

2525
```bash
2626
# Basic install (includes SentenceTransformers - fast, local embeddings)
27-
pip install memory-mcp
27+
pip install rag-mem
2828

2929
# With Ollama support (for local LLM embeddings)
30-
pip install memory-mcp[ollama]
30+
pip install rag-mem[ollama]
3131

3232
# With cloud providers
33-
pip install memory-mcp[openai]
33+
pip install rag-mem[openai]
3434

3535
# All providers
36-
pip install memory-mcp[all]
36+
pip install rag-mem[all]
3737

3838
# Using uv (recommended - faster)
39-
uv pip install memory-mcp
39+
uv pip install rag-mem
4040
```
4141

4242
**Default**: Uses `sentence-transformers` with `all-MiniLM-L6-v2` (384-dim, 80MB, fast).

packages/memory-mcp/pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["hatchling"]
33
build-backend = "hatchling.build"
44

55
[project]
6-
name = "memory-mcp"
6+
name = "rag-mem"
77
version = "0.1.0"
88
description = "RAG and Memory tools exposed via Model Context Protocol (MCP)"
99
readme = "README.md"
@@ -47,7 +47,7 @@ openai = ["openai>=1.0.0"]
4747
anthropic = ["anthropic>=0.30.0"]
4848
cohere = ["cohere>=5.0.0"]
4949
all = [
50-
"memory-mcp[ollama,openai,anthropic,cohere]",
50+
"rag-mem[ollama,openai,anthropic,cohere]",
5151
]
5252
dev = [
5353
"pytest>=8.0.0",
@@ -61,9 +61,9 @@ dev = [
6161
memory-mcp = "memory_mcp.cli:main"
6262

6363
[project.urls]
64-
Homepage = "https://github.com/masih/memory-mcp"
65-
Repository = "https://github.com/masih/memory-mcp"
66-
Documentation = "https://github.com/masih/memory-mcp#readme"
64+
Homepage = "https://github.com/MasihMoafi/A-Modular-Kingdom/tree/main/packages/memory-mcp"
65+
Repository = "https://github.com/MasihMoafi/A-Modular-Kingdom"
66+
Documentation = "https://github.com/MasihMoafi/A-Modular-Kingdom/tree/main/packages/memory-mcp#readme"
6767

6868
[tool.hatch.build.targets.wheel]
6969
packages = ["src/memory_mcp"]

0 commit comments

Comments
 (0)