warp-context-mcp
v1.0.1
Published
MCP server for saving and restoring Warp conversation context across account switches
Maintainers
Readme
warp-context-mcp
An MCP (Model Context Protocol) server that saves and restores conversation context across Warp account switches.
When using Warp AI, switching accounts loses all conversation context. This MCP server solves that by persisting context summaries locally, so you can seamlessly resume work in a new session.
Features
- save_context — Save current conversation context before switching accounts
- load_context — Restore context in a new conversation after switching
- list_contexts — List all saved project contexts
- delete_context — Delete a project's context records
Context is stored as local JSON files in ~/.warp-contexts/, with up to 5 history entries per project.
Installation
Using npx (recommended)
No installation needed. Configure your MCP client to run:
{
"mcpServers": {
"warp-context-mcp": {
"command": "npx",
"args": ["-y", "warp-context-mcp"]
}
}
}For Warp
Add to your Warp MCP settings (mcp_servers.json):
{
"mcpServers": {
"warp-context-mcp": {
"command": "npx",
"args": ["-y", "warp-context-mcp"]
}
}
}For Claude Desktop
Add to your Claude Desktop config (claude_desktop_config.json):
{
"mcpServers": {
"warp-context-mcp": {
"command": "npx",
"args": ["-y", "warp-context-mcp"]
}
}
}Usage
Save context (before switching accounts)
Tell your AI assistant:
"Save the current context for project X"
Load context (after switching accounts)
Tell your AI assistant:
"Load the context for project X"
How It Works
- Before switching accounts, ask the AI to save the current context — it captures the task, progress, decisions, TODOs, key files, and next steps.
- After switching to a new account, ask the AI to load the context — it restores all the saved information so you can continue where you left off.
License
MIT
