From afd38ee2ff6ef221b5fdd7aed643b27585dd2164 Mon Sep 17 00:00:00 2001 From: Toby Pettit <9166525+tobydoescode@users.noreply.github.com> Date: Tue, 28 Jul 2026 17:37:35 +0100 Subject: [PATCH] fix(mcp): point repository and docs at the real GitHub repo 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 --- mcp/README.md | 4 ++-- mcp/package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mcp/README.md b/mcp/README.md index 0b43c5b..a212539 100644 --- a/mcp/README.md +++ b/mcp/README.md @@ -1,10 +1,10 @@ # @evoio/apple-bridge-mcp -MCP server for managing Apple Reminders and Calendars. Wraps the [apple-bridge](https://github.com/tpettit/apple-bridge) HTTP API as Model Context Protocol tools for AI agents. +MCP server for managing Apple Reminders and Calendars. Wraps the [apple-bridge](https://github.com/tobydoescode/apple-bridge) HTTP API as Model Context Protocol tools for AI agents. ## Prerequisites -- [apple-bridge](https://github.com/tpettit/apple-bridge) running on the target macOS machine +- [apple-bridge](https://github.com/tobydoescode/apple-bridge) running on the target macOS machine - An API key created via `apple-bridge keys create` ## Usage with Claude Code diff --git a/mcp/package.json b/mcp/package.json index 081d1b3..0967b09 100644 --- a/mcp/package.json +++ b/mcp/package.json @@ -34,7 +34,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/tpettit/apple-bridge" + "url": "git+https://github.com/tobydoescode/apple-bridge.git" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.0.0",