mcp-memory-bank
MCP server that helps build Memory Bank - structured documentation system for context preservation
GitHub Stars
69
User Rating
Not Rated
Favorites
0
Views
39
Forks
13
Issues
0
Installation
Difficulty
BeginnerEstimated Time
5-10 minutes
Installation
Installation
Prerequisites
Python: 3.6 or higher
pip: Latest version
Installation Steps
1. Clone Repository
bash
git clone https://github.com/ipospelov/mcp-memory-bank
cd mcp-memory-bank
2. Create Virtual Environment and Install Dependencies
bash
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
pip install -r requirements.txt
3. Configure MCP Server
Add the following to yourmcp.json:
json
{
"mcpServers": {
"memory-bank": {
"command": "python",
"args": ["src/mcp_memory_bank/main.py"]
}
}
}
4. Start Server
bash
python src/mcp_memory_bank/main.py