Presume I know nothing about the underlying technology and please explain how to start using this project #525
-
|
I see an "Agent Quick Start" and a "Get Started in 60 Seconds". The first starts up just fine while the second gives an "Error while finding module specification for 'mcp_memory_service.scripts.installation.install' (ModuleNotFoundError: No module named 'mcp_memory_service.scripts')" error for Python 3.11 after performing "pip3.11 install mcp-memory-service". If I am a general Claude use, which start-up method do I want to work? If I am a Claude Code user, which start-up method do I want to work? Thank you in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
Hi @FrankDMartinez, great question! Let me break this down. The Error You HitThe "Get Started in 60 Seconds" section tells you to run: python -m mcp_memory_service.scripts.installation.install --quickThis fails because the Which Method Should You Use?If you use Claude Desktop (the desktop app)After installing with
{
"mcpServers": {
"memory": {
"command": "memory",
"args": ["server"]
}
}
}Then restart Claude Desktop. The memory service will start automatically when Claude Desktop launches, and you will have access to memory tools (store, search, recall) directly in your conversations. If you use Claude Code (the CLI/terminal tool)Claude Code uses its own MCP server configuration. Add the memory service to {
"mcpServers": {
"memory": {
"command": "memory",
"args": ["server"]
}
}
}Then restart Claude Code. Memory tools will appear automatically. If you are building agent pipelines (the "Agent Quick Start")The Agent Quick Start is for developers building programmatic AI workflows (using LangGraph, CrewAI, custom scripts, etc.) that talk to the memory service via its REST API. You would run: MCP_ALLOW_ANONYMOUS_ACCESS=true memory server --httpThis starts an HTTP server at TL;DR
Hope that clears things up! We will update the README to fix the broken install script reference. |
Beta Was this translation helpful? Give feedback.
-
|
Thank you! BTW, how can I verify this is working? Is there a log file or something I can check? |
Beta Was this translation helpful? Give feedback.
Hi @FrankDMartinez, great question! Let me break this down.
The Error You Hit
The "Get Started in 60 Seconds" section tells you to run:
This fails because the
scripts/directory is not included in the PyPI package — it only exists in the git repo. So afterpip install mcp-memory-service, that module path does not exist. This is a documentation bug and we will fix it.Which Method Should You Use?
If you use Claude Desktop (the desktop app)
After installing with
pip install mcp-memory-service, you need to manually configure Claude Desktop to use the memory server. Add this to your Claude Desktop config file:~/Library…