Currently .xcodebuildmcp/config.yaml is always created at the workspace root. This means every project that uses XcodeBuildMCP gets this directory, and each one needs to add it to .gitignore.
Request: Support a global/user-level config location (e.g. ~/.config/xcodebuildmcp/ or ~/.xcodebuildmcp/) for defaults that apply across all projects, with project-level config optionally overriding it.
This would:
- Avoid polluting project directories with tool-specific config
- Remove the need to add
.xcodebuildmcp/ to every repo's .gitignore
- Follow the convention of tools like git (
~/.gitconfig + .git/config), where user-level and project-level configs coexist