Skip to content

Commit d2434e1

Browse files
committed
Rename project to Memory MCP
Shorten the public product name, package name, command, examples, and GitHub Pages references from Project Memory MCP to Memory MCP while keeping the same functionality and MCP toolset.
1 parent 2608998 commit d2434e1

22 files changed

Lines changed: 126 additions & 126 deletions

File tree

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Contributing to Project Memory MCP
1+
# Contributing to Memory MCP
22

3-
Thanks for helping improve Project Memory MCP for long-term AI project memory and Supabase persistent context.
3+
Thanks for helping improve Memory MCP for long-term AI project memory and Supabase persistent context.
44

55
## How to contribute
66

README.md

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
# Project Memory MCP
1+
# Memory MCP
22

33
[![License](https://img.shields.io/badge/license-MIT-black)](LICENSE)
4-
[![GitHub Pages](https://img.shields.io/badge/docs-GitHub%20Pages-white?logo=github)](https://dannymaaz.github.io/project-memory-mcp/)
4+
[![GitHub Pages](https://img.shields.io/badge/docs-GitHub%20Pages-white?logo=github)](https://dannymaaz.github.io/memory-mcp/)
55
[![Python](https://img.shields.io/badge/python-3.10%2B-black)](requirements.txt)
66

77
Persistent project memory for AI models and coding agents.
8-
Project Memory MCP stores architecture, decisions, tasks, warnings, preferences, and session state in Supabase so OpenCode, Claude Code CLI, Qwen Code, Codex, or any MCP-compatible client can resume work without losing context.
8+
Memory MCP stores architecture, decisions, tasks, warnings, preferences, and session state in Supabase so OpenCode, Claude Code CLI, Qwen Code, Codex, or any MCP-compatible client can resume work without losing context.
99

1010
It is designed to behave like a normal MCP server: install it once, expose one `mcpServers` entry, and reuse the same server across every client that accepts MCP.
1111

1212
<p align="center">
13-
<img src="docs/assets/logo.svg" alt="Project Memory MCP logo" width="120">
13+
<img src="docs/assets/logo.svg" alt="Memory MCP logo" width="120">
1414
</p>
1515

1616
<p align="center">
1717
<strong>🧠 Long-term project memory across AI tools</strong><br>
18-
<a href="https://dannymaaz.github.io/project-memory-mcp/">Documentation</a>
18+
<a href="https://dannymaaz.github.io/memory-mcp/">Documentation</a>
1919
·
2020
<a href="examples/opencode/README.md">OpenCode</a>
2121
·
@@ -42,11 +42,11 @@ It is designed to behave like a normal MCP server: install it once, expose one `
4242

4343
## Why it matters
4444

45-
AI tools often forget the project state between sessions. Project Memory MCP fixes that by keeping a durable memory layer for your app, system, and implementation history.
45+
AI tools often forget the project state between sessions. Memory MCP fixes that by keeping a durable memory layer for your app, system, and implementation history.
4646

4747
<table>
4848
<tr>
49-
<td><strong>🎯 Search intent</strong><br>Project Memory MCP, AI project memory, Supabase persistent context</td>
49+
<td><strong>🎯 Search intent</strong><br>Memory MCP, AI project memory, Supabase persistent context</td>
5050
<td><strong>⚙️ Core job</strong><br>Store architecture, decisions, tasks, warnings, and session state</td>
5151
<td><strong>🌍 Interfaces</strong><br>OpenCode, Claude Code CLI, Qwen Code, Codex, native MCP clients</td>
5252
</tr>
@@ -65,27 +65,27 @@ AI tools often forget the project state between sessions. Project Memory MCP fix
6565
macOS and Linux:
6666

6767
```bash
68-
git clone https://github.com/dannymaaz/project-memory-mcp.git
69-
cd project-memory-mcp
68+
git clone https://github.com/dannymaaz/memory-mcp.git
69+
cd memory-mcp
7070
python3 -m venv .venv
7171
source .venv/bin/activate
7272
pip install -r requirements.txt
7373
pip install -e .
7474
cp .env.example .env
75-
project-memory-mcp
75+
memory-mcp
7676
```
7777

7878
Windows PowerShell:
7979

8080
```powershell
81-
git clone https://github.com/dannymaaz/project-memory-mcp.git
82-
cd project-memory-mcp
81+
git clone https://github.com/dannymaaz/memory-mcp.git
82+
cd memory-mcp
8383
py -m venv .venv
8484
.venv\Scripts\Activate.ps1
8585
pip install -r requirements.txt
8686
pip install -e .
8787
Copy-Item .env.example .env
88-
project-memory-mcp
88+
memory-mcp
8989
```
9090

9191
Then add your Supabase values to `.env`, run `schema.sql` in Supabase SQL Editor, and register `mcp.json` in your MCP-compatible client.
@@ -118,8 +118,8 @@ After `pip install -e .`, clients can launch the server with a normal MCP comman
118118
```json
119119
{
120120
"mcpServers": {
121-
"project-memory-mcp": {
122-
"command": "project-memory-mcp",
121+
"memory-mcp": {
122+
"command": "memory-mcp",
123123
"env": {
124124
"SUPABASE_URL": "https://your-project.supabase.co",
125125
"SUPABASE_KEY": "your-anon-key",
@@ -134,7 +134,7 @@ If a client accepts a standard MCP JSON with `mcpServers`, you can usually reuse
134134

135135
### Quick Links
136136

137-
- Docs site: `https://dannymaaz.github.io/project-memory-mcp/`
137+
- Docs site: `https://dannymaaz.github.io/memory-mcp/`
138138
- SQL schema: `schema.sql`
139139
- MCP config: `mcp.json`
140140

@@ -148,8 +148,8 @@ For other users who clone it from GitHub, the best pattern is still the same: cl
148148
macOS and Linux:
149149

150150
```bash
151-
git clone https://github.com/dannymaaz/project-memory-mcp.git
152-
cd project-memory-mcp
151+
git clone https://github.com/dannymaaz/memory-mcp.git
152+
cd memory-mcp
153153
python3 -m venv .venv
154154
source .venv/bin/activate
155155
pip install -r requirements.txt
@@ -160,8 +160,8 @@ cp .env.example .env
160160
Windows PowerShell:
161161

162162
```powershell
163-
git clone https://github.com/dannymaaz/project-memory-mcp.git
164-
cd project-memory-mcp
163+
git clone https://github.com/dannymaaz/memory-mcp.git
164+
cd memory-mcp
165165
py -m venv .venv
166166
.venv\Scripts\Activate.ps1
167167
pip install -r requirements.txt
@@ -179,7 +179,7 @@ Then:
179179
The installed MCP command is the same on Windows, macOS, and Linux:
180180

181181
```text
182-
project-memory-mcp
182+
memory-mcp
183183
```
184184

185185
### 2. Keep one central installation
@@ -201,8 +201,8 @@ The simplest pattern is to register one command everywhere:
201201
```json
202202
{
203203
"mcpServers": {
204-
"project-memory-mcp": {
205-
"command": "project-memory-mcp",
204+
"memory-mcp": {
205+
"command": "memory-mcp",
206206
"env": {
207207
"SUPABASE_URL": "https://your-project.supabase.co",
208208
"SUPABASE_KEY": "your-anon-key",
@@ -219,7 +219,7 @@ That same block works as the base for Antigravity, OpenCode, Claude Code, Codex,
219219

220220
Usually no.
221221

222-
If a client is configured to launch `project-memory-mcp`, it normally starts the server on demand when the client needs it. In normal use, that means you do not have to manually rerun the server every time you turn on the PC.
222+
If a client is configured to launch `memory-mcp`, it normally starts the server on demand when the client needs it. In normal use, that means you do not have to manually rerun the server every time you turn on the PC.
223223

224224
You only need to start it yourself when:
225225

@@ -239,7 +239,7 @@ opencode --mcp-config mcp.json
239239

240240
`PROJECT_MEMORY_INTERFACE=opencode` is optional. Use it only if you want to force a client label.
241241

242-
If OpenCode accepts a direct MCP JSON entry, you can paste the same `mcpServers.project-memory-mcp` block there.
242+
If OpenCode accepts a direct MCP JSON entry, you can paste the same `mcpServers.memory-mcp` block there.
243243

244244
#### Codex
245245

@@ -286,8 +286,8 @@ Example config:
286286
```json
287287
{
288288
"mcpServers": {
289-
"project-memory-mcp": {
290-
"command": "project-memory-mcp",
289+
"memory-mcp": {
290+
"command": "memory-mcp",
291291
"env": {
292292
"SUPABASE_URL": "https://your-project.supabase.co",
293293
"SUPABASE_KEY": "your-anon-key",
@@ -305,7 +305,7 @@ After saving the file, restart Claude Desktop.
305305
If your Antigravity build supports external MCP servers, register the same server there using the same command and environment values:
306306

307307
```bash
308-
project-memory-mcp
308+
memory-mcp
309309
```
310310

311311
Use the same `mcpServers` JSON block as the base config and set the interface to `native` or `antigravity` in your client flow.
@@ -327,7 +327,7 @@ PROJECT_MEMORY_INTERFACE=qwen-code qwen --mcp-config mcp.json
327327
## Natural Language Usage
328328

329329
In most MCP-compatible clients, you do not have to manually say which tool to call.
330-
If the client exposes Project Memory MCP tools and tool use is enabled, the model can decide on its own when to call tools like `load_unified_context`, `save_cross_interface_decision`, `update_task_status`, or `sync_session_state`.
330+
If the client exposes Memory MCP tools and tool use is enabled, the model can decide on its own when to call tools like `load_unified_context`, `save_cross_interface_decision`, `update_task_status`, or `sync_session_state`.
331331

332332
Typical natural-language prompts:
333333

@@ -368,7 +368,7 @@ If your client disables tool use, the model cannot call MCP tools by itself. In
368368

369369
- Public docs: `docs/index.html`
370370
- SEO sitemap: `docs/sitemap.xml`
371-
- GitHub Pages target: `https://dannymaaz.github.io/project-memory-mcp/`
371+
- GitHub Pages target: `https://dannymaaz.github.io/memory-mcp/`
372372
- Locales: `docs/locales/en.json` and `docs/locales/es.json`
373373

374374
## API Reference
@@ -397,7 +397,7 @@ Main tools exposed by the server in `src/server.py`:
397397

398398
## SEO Highlights
399399

400-
- Uses Project Memory MCP, AI project memory, and Supabase persistent context in high-signal sections.
400+
- Uses Memory MCP, AI project memory, and Supabase persistent context in high-signal sections.
401401
- Keeps core keywords near the top for GitHub search and repository previews.
402402
- Ships Open Graph, Twitter Card, JSON-LD, canonical URL, hreflang, and sitemap for Google indexing.
403403
- Includes bilingual docs and MCP-oriented examples for broader discoverability.
@@ -413,7 +413,7 @@ Main tools exposed by the server in `src/server.py`:
413413

414414
## Support the Project
415415

416-
If Project Memory MCP helps your workflow, you can support development here:
416+
If Memory MCP helps your workflow, you can support development here:
417417

418418
[![PayPal](https://img.shields.io/badge/PayPal-Support-0A2540?style=for-the-badge&logo=paypal&logoColor=white)](https://www.paypal.me/Creativegt)
419419
[![Ko-fi](https://img.shields.io/badge/Ko--fi-Support-FF5E5B?style=for-the-badge&logo=ko-fi&logoColor=white)](https://ko-fi.com/X8X71W99D6)
@@ -436,4 +436,4 @@ See `CONTRIBUTING.md` for setup, style, PR process, and issue reporting.
436436

437437
## Search Keywords
438438

439-
Project Memory MCP, AI project memory, Supabase persistent context, AI agent memory, OpenCode memory, Claude Code CLI memory, Qwen Code memory, Codex memory, multi-interface AI, context optimization, Danny Maaz.
439+
Memory MCP, AI project memory, Supabase persistent context, AI agent memory, OpenCode memory, Claude Code CLI memory, Qwen Code memory, Codex memory, multi-interface AI, context optimization, Danny Maaz.

docs/_config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
title: Project Memory MCP
1+
title: Memory MCP
22
description: Persistent Project Memory for AI Models
33
url: https://dannymaaz.github.io
4-
baseurl: /project-memory-mcp
4+
baseurl: /memory-mcp
55
lang: en
66
plugins: []

0 commit comments

Comments
 (0)