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 CHANGED
File without changes
@@ -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
@@ -63,7 +63,6 @@ export async function startReflectMCPServer(config) {
63
63
  await server.start({
64
64
  httpStream: {
65
65
  port,
66
- stateless: true,
67
66
  },
68
67
  transportType: "httpStream",
69
68
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reflect-mcp",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "description": "MCP server for Reflect Notes - connect your notes to Claude Desktop. Just run: npx reflect-mcp",
5
5
  "type": "module",
6
6
  "main": "dist/server.js",