You signed in with another tab or window. Reload
to refresh your session. You signed out in another tab or window. Reload
to refresh your session. You switched accounts on another tab or window. Reload
to refresh your session. Dismiss alert
dazeb / cline-mcp-memory-bank Public
A memory system for Cline that tracks progress between conversations.
github.com/dazeb/cline-mcp-memory-bank
28 stars
2 forks
Branches
Tags
Activity
Notifications
You must be signed in to change notification settings
main
Go to file
Code
| Name | | Name | Last commit message | Last commit date |
| --- | --- | --- | --- |
| Latest commit
-------------
dazeb
Merge pull request
#2
from GoNowSeeThrough/main
Mar 20, 2025
38d4d75
· Mar 20, 2025
History
-------
17 Commits
| | |
| memory-bank | | memory-bank | Update progress and decision logs with new dates; revise project cont… | Mar 15, 2025 |
| src | | src | Update progress and decision logs with new dates; revise project cont… | Mar 15, 2025 |
| .clinerules | | .clinerules | Revise memory bank integration rules for clarity and detail; emphasiz… | Mar 15, 2025 |
| .gitignore | | .gitignore | Initialize project with TypeScript configuration, package setup, and … | Mar 13, 2025 |
| README.md | | README.md | Update README.md | Mar 16, 2025 |
| package-lock.json | | package-lock.json | Initialize project with TypeScript configuration, package setup, and … | Mar 13, 2025 |
| package.json | | package.json | Update package.json | Mar 18, 2025 |
| tsconfig.json | | tsconfig.json | Initialize project with TypeScript configuration, package setup, and … | Mar 13, 2025 |
| View all files | | |
This project is still in development but is mostly working.
A Model Context Protocol server that provides persistent project context management for AI-assisted development - specifically designed to work with Cline VSCode Extenson
.
The Memory Bank MCP server helps maintain consistent project context across development sessions by providing structured tools and resources for managing:
Loading
graph LR
VSCode[VS Code + Cline] --> MemBank[Memory Bank Server]
MemBank --> Files[Markdown Files]
Files --> Context[Project Context]
Files --> Progress[Progress Tracking]
Files --> Decisions[Decision Log]
AI[AI Assistant] --> Files
VSCode --> AI
AI --> MemBank
One of the most powerful features of this project is its ability to maintain context across different coding sessions. Think of it as giving your AI assistant a "memory" that doesn't forget what you've been working on, even when you close VSCode and come back later.
Imagine you're working on a complex project that spans multiple days or weeks. Normally, each time you start a new coding session, you'd need to re-explain your project's context to the AI assistant. With the Memory Bank:
Loading
graph LR
Session[New Session] --> Load[Load Context]
Load --> Read[Read Files]
Read --> Update[Update Context]
Update --> Write[Write Changes]
Write --> Track[Track Progress]
Track --> Record[Record Decisions]
Record --> Ready[Ready for Tasks]
Continuity Across Sessions
Smart Context Management
Automatically tracks important technical decisions
Enhanced Productivity
Faster project onboarding for each session
Project History
Keeps track of why certain decisions were made
The Memory Bank seamlessly integrates with the Cline VSCode Extension, requiring no additional setup from you once configured. It works quietly in the background, ensuring your AI assistant always has the context it needs to provide relevant and helpful assistance.
# Clone the repository
git clone https://github.com/dazeb/cline-mcp-memory-bank
cd cline-mcp-memory-bank
# Install dependencies
npm install
# Build the server
npm run build
# Make globally available (optional)
npm link
Add the following to your Cline MCP settings (~/.config/Code - Insiders/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
):
{
"mcpServers": {
"memory-bank": {
"command": "node",
"args": [\
"/path/to/cline-memory-bank/build/index.js"\
],
"disabled": false,
"autoApprove": []
}
}
}
Replace /path/to/cline-memory-bank
with the actual path to your server installation.
Once installed simply ask cline to initialize the memory bank
.
Then simply ask cline to update the memory bank or use .clinerules
file or the system prompt.
initialize_memory_bank
ts
use_mcp_tool('memory-bank', 'initialize_memory_bank', {
projectPath: '/path/to/project'
});
update_context
ts
use_mcp_tool('memory-bank', 'update_context', {
projectPath: '/path/to/project',
content: {
currentSession: {
date: '2025-03-13',
mode: 'development',
task: 'Implementing new feature'
}
}
});
record_decision
ts
use_mcp_tool('memory-bank', 'record_decision', {
projectPath: '/path/to/project',
decision: {
title: 'Authentication System',
description: 'Implementing JWT-based authentication',
rationale: 'Better scalability and stateless operation',
alternatives: [\
'Session-based auth',\
'OAuth only'\
]
}
});
track_progress
ts
use_mcp_tool('memory-bank', 'track_progress', {
projectPath: '/path/to/project',
progress: {
completed: ['Setup project', 'Initialize database'],
inProgress: ['Implement auth', 'Create API routes'],
blocked: ['Deploy to production']
}
});
memory://project/context
memory://active/context
Current session state and tasks
memory://progress
Project milestones and task tracking
memory://decisions
Technical decisions and rationale
Add to Cline system prompt or .clinerules
file under settings.
Memory Bank Integration Rules:
CRITICAL: Before ANY task or response:
1. ALWAYS check active context (memory://active/context):
- Current project state and mode
- Ongoing tasks and their status
- Recent decisions and updates
- Open questions and concerns
2. ALWAYS review project context (memory://project/context):
- Technical stack and dependencies
- Project guidelines and standards
- Architecture principles
- Development workflow
3. ALWAYS consult decision log (memory://decisions) for:
- Previous architectural choices
- Established patterns
- Technical rationales
- Related decisions
4. ALWAYS check progress tracking (memory://progress):
- Current phase and milestones
- Completed work
- In-progress tasks
- Known blockers
After EVERY task:
1. Update active context with:
- Task completion status
- New information learned
- Changes made
2. Record any technical decisions with:
- Clear rationale
- Considered alternatives
- Impact assessment
3. Update progress tracking:
- Mark completed items
- Add new tasks identified
- Note any blockers found
Key Guidelines:
- NEVER proceed without checking memory bank context
- ALWAYS maintain consistent project state
- Record ALL significant technical decisions
- Track progress in real-time
- Keep context updated with EVERY change
When initialized, the Memory Bank creates the following structure in your project:
Loading
graph LR
Root[Project Root] --> Bank[memory-bank]
Bank --> PC[projectContext.md]
Bank --> AC[activeContext.md]
Bank --> P[progress.md]
Bank --> DL[decisionLog.md]
PC --> Stack[Technical Stack]
AC --> Tasks[Active Tasks]
P --> Status[Project Status]
DL --> History[Decision History]
Upon initialization, each file is populated with structured content:
activeContext.md
:
progress.md
:
Current phase (Initialization)
decisionLog.md
:
Initial project structure decisions
projectContext.md
:
Project overview and version
Loading
graph LR
Start[Start] --> Init[Initialize]
Init --> Context[Load Context]
Context --> Update[Make Changes]
Update --> Progress[Track Progress]
Progress --> Record[Record Decisions]
Record --> Sync[Auto Sync]
Sync --> Context
Simply ask Cline to initialize the memory bank.
Initialize a new Memory Bank:
use_mcp_tool('memory-bank', 'initialize_memory_bank', {
projectPath: process.cwd() // or specific path
});
Access project context:
access_mcp_resource('memory-bank', 'memory://project/context');
Update session context:
use_mcp_tool('memory-bank', 'update_context', {
projectPath: process.cwd(),
content: {
currentSession: {
date: new Date().toISOString().split('T')[0],
mode: 'development',
task: 'Current task description'
}
}
});
Record technical decisions:
use_mcp_tool('memory-bank', 'record_decision', {
projectPath: process.cwd(),
decision: {
title: 'Decision Title',
description: 'What was decided',
rationale: 'Why it was decided'
}
});
To modify or enhance the server:
src/index.ts
npm test
npm run build
Contributions are welcome! Please:
MIT © dazeb
A memory system for Cline that tracks progress between conversations.
github.com/dazeb/cline-mcp-memory-bank
No releases published
You can’t perform that action at this time.