Skip to main content
MIRA stores all your data locally in mira.db (SQLite). You can selectively clear specific data types or perform a complete factory reset.

Data paths

OSPath
macOS~/Library/Application Support/mira/mira.db
Windows%APPDATA%\mira\mira.db
Linux~/.config/mira/mira.db

Selective data clearing

Press ⌘, → Data Management.
ActionWhat it clears
Clear all sessionsAll chat sessions and message history
Clear custom skillsAll user-created skills (built-ins are unaffected)
Clear custom workflowsAll user-created workflows (built-ins are unaffected)
Clear eval profilesAll eval profiles, cases, and run history
Clear activity logsIn-memory activity center log (already clears on restart)
Each action shows a confirmation dialog listing the number of items that will be deleted. Deletion is permanent.

Full factory reset

A factory reset clears all MIRA data:
  • All sessions and messages
  • All custom skills and workflows
  • All eval profiles and run history
  • All MCP server configurations
  • All provider settings (API keys are also removed from the keychain)
  • All preferences (reset to defaults)
To perform a factory reset:
1

Open Settings

Press ⌘,.
2

Go to Data Management

Click Data Management at the bottom of the sidebar.
3

Click Factory Reset

Click the red Factory Reset button.
4

Confirm

Type RESET in the confirmation field and click Confirm. MIRA restarts.
Factory reset is irreversible. Export any skills, workflows, or eval profiles you want to keep before proceeding.

Manual database deletion

If MIRA is not launching, you can delete the database manually:
# macOS
rm ~/Library/Application\ Support/mira/mira.db

# Windows (PowerShell)
Remove-Item "$env:APPDATA\mira\mira.db"

# Linux
rm ~/.config/mira/mira.db
MIRA creates a fresh database on next launch.
Edit this page — Open a pull request