chore: define CLAUDE_PLUGIN_ROOT in project settings for local dev
When this repo is opened as a project (not installed via marketplace),
Claude Code reads `.mcp.json` as a project-level MCP config. The
`${CLAUDE_PLUGIN_ROOT}/build/index.js` path can't resolve because
that variable is only set during plugin install.
Set `CLAUDE_PLUGIN_ROOT` to `$CLAUDE_PROJECT_DIR` in `.claude/settings.json`
so the project-scoped MCP server resolves correctly. Marketplace install
is unaffected (it loads from the cached plugin dir with its own real
CLAUDE_PLUGIN_ROOT and never reads this file).
Side benefit: editing src/, rebuilding, and reopening the project now
gives you a live local apple-mail MCP server for development without
reinstalling the plugin.