Persistent memory and session intelligence for AI coding assistants. Zero config.
{
"mcpServers": {
"session-forge": {
"args": [
"-y",
"session-forge"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Persistent memory and session intelligence for AI coding assistants. Zero config.
Is it safe?
No known CVEs for session-forge.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 31 days ago. 17 weekly downloads.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'session-forge' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Session Forge MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Never start from zero. Persistent session intelligence for AI coding assistants.
Session-forge gives your AI coding assistant memory that survives across sessions. It tracks decisions, dead ends, user preferences, and session state — so every conversation builds on the last one instead of starting from scratch.
Works with Claude Code, Cursor, Windsurf, and any MCP-compatible client.
claude mcp add session-forge -- npx session-forge
Add to your MCP settings:
{
"mcpServers": {
"session-forge": {
"command": "npx",
"args": ["-y", "session-forge"]
}
}
}
That's it. No database, no Docker, no config files.
| Tool | Description | Required |
|------|-------------|----------|
| session_checkpoint | Save work-in-progress state for crash recovery | task, intent, next_steps |
| session_restore | Check for interrupted work from a previous session | — |
| session_complete | Archive session and mark complete | — |
| Tool | Description | Required |
|------|-------------|----------|
| profile_get | Get the current user profile | — |
| profile_update | Update name, preferences, projects, or notes | — |
| Tool | Description | Required |
|------|-------------|----------|
| journal_entry | Record session summary with breakthroughs and frustrations | summary |
| journal_recall | Retrieve recent session journals | — |
| Tool | Description | Required |
|------|-------------|----------|
| decision_record | Log a significant decision with alternatives and reasoning | choice, reasoning |
| decision_search | Search past decisions by keyword (supports limit param) | query |
| Tool | Description | Required |
|------|-------------|----------|
| dead_end_record | Log a failed approach and the lesson learned | attempted, why_failed |
| dead_end_search | Search past dead ends to avoid repeating mistakes (supports limit param) | query |
| Tool | Description | Required |
|------|-------------|----------|
| full_context_recall | Get everything — profile, journals, decisions, dead ends. Supports optional project filter. | — |
| Tool | Description | Required |
|------|-------------|----------|
| data_manage | Prune old entries, export all data, clear stores, or view stats | action |
| data_list | Browse stored entries with numbered summaries. Supports search filter. | store |
| data_delete | Delete a specific entry by index from data_list output | store, entry_index |
data_manage actions:
stats — entry counts and schema versions for all storesexport — dump all data as JSONprune — remove entries older than N days (default: 90)clear — wipe a specific store (journal, decisions, dead_ends, profile, or all)data_list + data_delete workflow:
data_list with store="decisions" — see numbered list of all decisionsdata_list with store="decisions", query="minecraft" — filter by keyworddata_delete with store="decisions", entry_index=3 — remove entry #3 from the list| | session-forge | Basic memory MCPs | Enterprise tools |
|---|---|---|---|
| Setup | npx session-forge | Varies | Docker + databases |
| Dead end tra