reflect-mcp 1.0.4 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +0 -0
- package/dist/pkcehandler.js +0 -1
- package/dist/server.js +0 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
File without changes
|
package/dist/pkcehandler.js
CHANGED
|
@@ -223,7 +223,6 @@ export class PKCEOAuthProxy {
|
|
|
223
223
|
// Handle /oauth/token - exchange proxy code for access token
|
|
224
224
|
// FastMCP expects a TokenResponse object, not a Response
|
|
225
225
|
async exchangeAuthorizationCode(params) {
|
|
226
|
-
console.log("[PKCEProxy] exchangeAuthorizationCode called with code:", params.code?.slice(0, 8) + "...");
|
|
227
226
|
if (!params.code) {
|
|
228
227
|
throw new OAuthProxyError("invalid_request", "Missing authorization code", 400);
|
|
229
228
|
}
|
package/dist/server.js
CHANGED