Uninstall
Uninstalling MemStrata is a two-part process: remove the binary and optionally remove the local data files. Your AI tools will continue working normally without MemStrata — they’ll just send full context on every request again.
Step 1: Stop the harness
Section titled “Step 1: Stop the harness”memstrata stopThis gracefully shuts down the local MCP server (localhost:8080) before removal.
Step 2: Remove the binary
Section titled “Step 2: Remove the binary”Windows
Section titled “Windows”Uninstall via Settings → Apps → MemStrata (the MSI installer registers it here). Or from an elevated command prompt:
msiexec /x {product-guid}Where {product-guid} is shown in Add/Remove Programs.
Drag MemStrata.app from /Applications to Trash, then:
sudo rm -rf /usr/local/bin/memstrataLinux (.deb)
Section titled “Linux (.deb)”sudo apt remove memstrata-proLinux (.rpm)
Section titled “Linux (.rpm)”sudo dnf remove memstrata-pro# orsudo rpm -e memstrata-propip / pipx install
Section titled “pip / pipx install”pipx uninstall memstrata-proStep 3: Remove local data (optional)
Section titled “Step 3: Remove local data (optional)”MemStrata stores two local databases. These contain only data derived from your codebase — no credentials, no prompts.
| File | Contents | Safe to delete? |
|---|---|---|
~/memstrata/index.db | Codebase graph + AST index | Yes — rebuilds from source on reinstall |
~/memstrata/telemetry.db | Your four-metric history and savings data | Yes — deletes your savings history |
~/memstrata/config.toml | Per-project configuration | Yes — can be recreated with memstrata init |
To delete all local data:
rm -rf ~/memstrata/On Windows:
rmdir /s /q %USERPROFILE%\memstrataStep 4: Remove IDE extensions
Section titled “Step 4: Remove IDE extensions”VS Code / Cursor / Windsurf
Section titled “VS Code / Cursor / Windsurf”Open the Extensions panel (Ctrl+Shift+X / Cmd+Shift+X), search for MemStrata, click Uninstall.
JetBrains IDEs
Section titled “JetBrains IDEs”Settings → Plugins → Installed → MemStrata → Uninstall.
Browser extension
Section titled “Browser extension”Open your browser’s extension manager (chrome://extensions, edge://extensions, or Firefox Add-ons) and remove MemStrata.
Step 5: Restore AI tool configuration
Section titled “Step 5: Restore AI tool configuration”If you used the harness path (not MCP), your AI tool is configured to proxy through localhost:8080. Remove that configuration:
Remove --openai-api-base http://localhost:8080/v1 from your Aider config or alias.
Codex CLI / custom tools
Section titled “Codex CLI / custom tools”Remove the OPENAI_BASE_URL=http://localhost:8080/v1 environment variable from your shell profile.
Subscription
Section titled “Subscription”Uninstalling the binary does not cancel your subscription. To cancel:
- Go to your Stripe Customer Portal (link in your subscription confirmation email)
- Cancel the subscription
- You will not be charged after the current cycle ends
If you need help, email hello@memstrata.dev with your subscription ID.
Reinstalling
Section titled “Reinstalling”To reinstall later:
pipx install memstrata-promemstrata initMemStrata will rebuild your codebase index from scratch. Your subscription remains active if you didn’t cancel it.