Commits on May 6, 2026 v0.48.2: morph setup writes absolute morph-mcp path `morph setup cursor` (and the `claude-code` / `opencode` siblings, and the `aoe` delegator) used to write `command: "morph-mcp"` (a bare name) into the IDE integration JSON. Cursor on macOS is a GUI-launched app and does NOT inherit the user's shell PATH, so the bare command failed to spawn for Homebrew users on `/opt/homebrew/bin` — the agent saw the `morph-record.mdc` rule but had no `morph_record_session` tool to call. New `resolve_mcp_command()` helper in `morph-cli/src/setup.rs` resolves `morph-mcp` to an absolute path at setup time. Resolution order, first match wins: 1. `MORPH_MCP_PATH` env var (escape hatch) 2. `morph-mcp` sibling of the running `morph` binary via `current_exe()` — common case for Homebrew, `cargo install`, AUR 3. Manual `PATH` walk 4.…