meridian doctor. It runs the full suite of environment health checks — binary presence, plist validity, running processes, database existence, Python venv, and MCP build — and tells you exactly which check failed and what to do about it.
Installation & Setup
install.sh fails at the Homebrew step
install.sh fails at the Homebrew step
The installer uses Homebrew to install system dependencies (Rust, Node, Python, screenpipe). If it fails at this step:If the tools are already installed, the command exits immediately with a message to that effect. Otherwise, follow the on-screen prompt and re-run
- Make sure you have an active internet connection.
- Ensure Xcode Command Line Tools are installed:
./install.sh after the installation completes.Rust build fails
Rust build fails
Meridian compiles the ETL daemon from Rust source. If the build fails, first check that the correct toolchain is active:The output should show a stable toolchain for Then re-run
aarch64-apple-darwin (Apple Silicon) or x86_64-apple-darwin. If rustup is not found at all, install it:./install.sh. The rust-toolchain.toml file in the repo root pins the exact version the project requires, so rustup picks it up automatically.Python venv setup fails
Python venv setup fails
The Python services (MLX inference server, Jira updater, task classifier) require Python 3.13. Check whether it is installed:If the command is not found, install it via Homebrew or pyenv:After installing Python 3.13, re-run the service setup:
Daemon & Runtime
Daemon exits immediately on startup
Daemon exits immediately on startup
The Rust daemon TCP-connects to the MLX inference server before entering its poll loop. If the MLX server is not running, the daemon exits immediately with an error message in the log.Fix — install and start the MLX server daemon:Then check that it started:Wait until you see Run
server: MLX model ready (this can take up to 30 seconds on first run while the model downloads).Alternatively, if you do not need session classification, set CLASSIFICATION_ENABLED=false in ~/.meridian/.env and restart:meridian doctor afterwards to confirm everything is healthy.How to check daemon health
How to check daemon health
Two commands give you a complete picture:For live log output:
Sessions are not appearing in the database
Sessions are not appearing in the database
If If the file is missing, screenpipe has not recorded any frames yet. Ensure screenpipe has Screen Recording permission (see the macOS Permissions section below) and that it has been running long enough to produce data.
meridian status shows the daemon is running but no sessions appear in ~/.meridian/meridian.db, check the following:- Is screenpipe running?
- Does the screenpipe database exist?
- Is
SCREENPIPE_DBpointing to the right path?
Integrations
Jira: 401 Unauthorized
Jira: 401 Unauthorized
Jira: no Jira tasks are loading
Jira: no Jira tasks are loading
If the Jira connector is authenticated but no Jira tasks are appearing in session classifications:You can also run a targeted refresh with custom JQL:
- Check
JIRA_PROJECT_KEYS— if set, ensure the keys match exactly (e.g.KAN, notkan). - Confirm that the projects have open issues in the configured statuses.
- Force a full refresh without restarting the daemon:
GitHub: 401 Unauthorized
GitHub: 401 Unauthorized
Linear: no tasks are loading
Linear: no tasks are loading
- Verify
LINEAR_API_KEYis set correctly in~/.meridian/.env. - Check
LINEAR_TEAM_IDS— if set, confirm the team IDs are correct (visible in Linear’s workspace settings URL). - Ensure the teams have open issues in a status that the connector picks up.
- Check the jira-updater log (which also handles Linear sync) for error messages:
MCP Server
AI tool says Meridian is not found or DB is missing
AI tool says Meridian is not found or DB is missing
This error means the MCP server process could not find Use an absolute path —
~/.meridian/meridian.db.- Confirm the daemon is running and has processed at least one poll tick:
- Check that the database exists:
- If you edited the MCP config file (
~/Library/Application Support/Claude/claude_desktop_config.json), verify that the path inargspoints to the actual repo location:
~ is not expanded by all MCP hosts.MCP server build fails
MCP server build fails
If Then restart your MCP-compatible AI tool so it picks up the rebuilt server.
packages/meridian-mcp/dist/index.js is missing or stale, rebuild it:macOS Permissions
screenpipe is not recording — no frames in the database
screenpipe is not recording — no frames in the database
screenpipe requires Screen Recording permission to capture frames. Without it, the database stays empty and Meridian has nothing to process.Run the guided permissions walkthrough:The command opens the Screen Recording, Accessibility, and Microphone System Settings panes in sequence and waits for you to confirm each one. After granting access, restart the stack:
No audio transcription in sessions
No audio transcription in sessions
Audio transcription requires the Microphone permission. screenpipe appears in the Microphone pane only after it has first tried to access the microphone — this happens automatically once Screen Recording is granted and screenpipe is running.If screenpipe is not listed in the Microphone pane yet:
- Ensure Screen Recording is already granted.
- Start screenpipe:
meridian start. - Wait a few seconds, then open System Settings → Privacy & Security → Microphone.
- Toggle screenpipe on.
meridian permissions to open all three panes in the correct order.Dashboard
http://localhost:3000 is not loading
http://localhost:3000 is not loading
- Check whether the UI service is running:
- If it is not running, check the logs:
- If the UI has not been built yet (e.g. after a fresh clone or
--no-uiinstall), build it:
- Then bring the service back up:
meridian doctor is always the best first step for any issue. It checks every dependency and running service in one command and tells you exactly what needs fixing.