chore(mcp): install pal-mcp-server fork as a uv tool#224
Merged
Conversation
Replace the uvx-from-git launch of the pal MCP server with the globally-installed 'pal-mcp-server' command from the laurigates/pal-mcp-server fork. - .mcp.json + .chezmoidata.toml mcp_servers registry: pal now runs the bare 'pal-mcp-server' command instead of 'uvx --from git+...BeehiveInnovations...'. - .chezmoidata/uv_tools.toml: declare the fork in git_tools so run_onchange installs it via 'uv tool install' on apply. Stops re-resolving the git source on every MCP launch (a process-spawn storm) and adopts the fork's improvements. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Switch the
palMCP server fromuvx --from git+https://github.com/BeehiveInnovations/pal-mcp-server.gitto the globally-installedpal-mcp-servercommand (laurigates/pal-mcp-server fork), and declare the install in the uv_tools registry.Why
uvx --from git+...re-resolves the git source on every MCP launch, generating a process-spawn storm that taxes the macOS security stack (EndpointSecurity/XProtect inspect every spawn). Installing the fork once viauv tool installand invoking the bare command eliminates the per-launch git churn and picks up the fork's improvements.Files
.mcp.json— repo-local project MCP config.chezmoidata.toml—[mcp_servers.pal]registry entry.chezmoidata/uv_tools.toml—git_toolsinstall declaration🤖 Generated with Claude Code