fix(mcp): point repository and docs at the real GitHub repo - #12
Merged
Conversation
package.json and the MCP README both referenced github.com/tpettit/apple-bridge, which does not exist - the API returns 404. The package is already published as @evoio/apple-bridge-mcp@1.0.0, so the Repository and Homepage links on its npm page are both dead. Point them at tobydoescode/apple-bridge, matching the git remote. npm derives homepage and bugs from the repository field when they are absent, so correcting that one entry fixes all three links on the next publish. Co-Authored-By: Claude Opus 5 <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.
Problem
mcp/package.jsonandmcp/README.mdboth referencedgithub.com/tpettit/apple-bridge, which does not exist:The git remote is
tobydoescode/apple-bridge.This is live on npm.
@evoio/apple-bridge-mcp@1.0.0is already published, and its metadata currently reads:Both links on the npm page dead-end at a 404.
Fix
Plus the two prose links in
mcp/README.md, which pointed at the same 404.Only the
repositoryfield needed correcting — npm deriveshomepageandbugsfrom it when they're absent, so all three links resolve once this is published. Also normalised to the canonicalgit+https://...gitform.author: "tpettit"left as-is — that reads as a name, not a wrong handle.Verified
gh api repos/tobydoescode/apple-bridge→tobydoescode/apple-bridgenpm pkg get repository→git+https://github.com/tobydoescode/apple-bridge.gittpettit/apple-bridgereferences remain in any tracked.mdor.jsonNote
This is metadata only — nothing ships in
dist, so the npm page won't update until the next publish. Worth doing before then rather than after.🤖 Generated with Claude Code