fix: stop tracking node_modules symlink; add type:http to README examples#144
Merged
Merged
Conversation
PR #137 accidentally committed node_modules as a git symlink (mode 120000) pointing to an absolute local path (/Users/matt/.../node_modules). Although node_modules/ is gitignored, the symlink itself was tracked, so it shipped to everyone — breaking fresh checkouts and leaking a local filesystem path. Removes the symlink from git tracking with 'git rm --cached'. node_modules/ is already in .gitignore, so it stays ignored locally and won't be re-added.
Multiple Claude Code users reported they couldn't connect to the server until they added \"type\": \"http\" to the mcpServers entry. Adding it to both example configs (default + ?codemode=false) so it works out of the box.
carlosandresfloreszamudio1-netizen
approved these changes
Jun 6, 2026
| @@ -25,6 +25,7 @@ Just connect to the MCP server URL - you'll be redirected to Cloudflare to autho | |||
| { | |||
| "mcpServers": { | |||
There was a problem hiding this comment.
Google.com//carlosandresfloreszamudio1@gmail.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.
Two small repo-hygiene fixes.
1. Stop tracking the
node_modulessymlinkPR #137 accidentally committed
node_modulesas a git symlink (mode120000) pointing to an absolute local path:Even though
node_modules/is in.gitignore, the symlink itself was tracked, so it shipped to everyone — breaking fresh checkouts and leaking a local filesystem path.Fix:
git rm --cached node_modules. It's already gitignored, so it stays ignored locally and won't be re-added.2. Add
"type": "http"to README MCP config examplesMultiple Claude Code users reported they couldn't connect until they added
"type": "http"to themcpServersentry. Added it to both example blocks (default +?codemode=false) so the config works out of the box.{ "mcpServers": { "cloudflare-api": { "type": "http", "url": "https://mcp.cloudflare.com/mcp" } } }