| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
🦋 Changeset detectedLatest commit: 6ae0e98 The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
Sorry, something went wrong.
|
@modelcontextprotocol/client
npm i https://pkg.pr.new/@modelcontextprotocol/client@2451
npm i https://pkg.pr.new/@modelcontextprotocol/codemod@2451
npm i https://pkg.pr.new/@modelcontextprotocol/core@2451
npm i https://pkg.pr.new/@modelcontextprotocol/server@2451
npm i https://pkg.pr.new/@modelcontextprotocol/server-legacy@2451
npm i https://pkg.pr.new/@modelcontextprotocol/express@2451
npm i https://pkg.pr.new/@modelcontextprotocol/fastify@2451
npm i https://pkg.pr.new/@modelcontextprotocol/hono@2451
npm i https://pkg.pr.new/@modelcontextprotocol/node@2451 commit: 6ae0e98 |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Previously unaddressed
#2333 correctly returns -32602 with data.uri for a valid but unknown resource URI. A syntactically malformed URI still throws from new URL() and falls through the generic handler-error path.
This PR
Convert that parse failure to Invalid Params with the exact request value and a distinct data shape:
{ "uri": "...", "reason": "invalid_uri" }The extra reason keeps this distinguishable from ResourceNotFoundError's exact { uri } shape.
Verification
Follow-up to #2267, #2333, and #2286.