Skip to content

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.


Terminal window
memstrata stop

This gracefully shuts down the local MCP server (localhost:8080) before removal.


Uninstall via Settings → Apps → MemStrata (the MSI installer registers it here). Or from an elevated command prompt:

Terminal window
msiexec /x {product-guid}

Where {product-guid} is shown in Add/Remove Programs.

Drag MemStrata.app from /Applications to Trash, then:

Terminal window
sudo rm -rf /usr/local/bin/memstrata
Terminal window
sudo apt remove memstrata-pro
Terminal window
sudo dnf remove memstrata-pro
# or
sudo rpm -e memstrata-pro
Terminal window
pipx uninstall memstrata-pro

MemStrata stores two local databases. These contain only data derived from your codebase — no credentials, no prompts.

FileContentsSafe to delete?
~/memstrata/index.dbCodebase graph + AST indexYes — rebuilds from source on reinstall
~/memstrata/telemetry.dbYour four-metric history and savings dataYes — deletes your savings history
~/memstrata/config.tomlPer-project configurationYes — can be recreated with memstrata init

To delete all local data:

Terminal window
rm -rf ~/memstrata/

On Windows:

Terminal window
rmdir /s /q %USERPROFILE%\memstrata

Open the Extensions panel (Ctrl+Shift+X / Cmd+Shift+X), search for MemStrata, click Uninstall.

Settings → Plugins → Installed → MemStrata → Uninstall.

Open your browser’s extension manager (chrome://extensions, edge://extensions, or Firefox Add-ons) and remove MemStrata.


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.

Remove the OPENAI_BASE_URL=http://localhost:8080/v1 environment variable from your shell profile.


Uninstalling the binary does not cancel your subscription. To cancel:

  1. Go to your Stripe Customer Portal (link in your subscription confirmation email)
  2. Cancel the subscription
  3. You will not be charged after the current cycle ends

If you need help, email hello@memstrata.dev with your subscription ID.


To reinstall later:

Terminal window
pipx install memstrata-pro
memstrata init

MemStrata will rebuild your codebase index from scratch. Your subscription remains active if you didn’t cancel it.