@prmichaelsen/remember-mcp 0.2.3 → 0.2.4

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.
@@ -2709,9 +2709,6 @@ async function ensureDatabasesInitialized() {
2709
2709
  return initializationPromise;
2710
2710
  }
2711
2711
  function createServer(accessToken, userId, options = {}) {
2712
- if (!accessToken) {
2713
- throw new Error("accessToken is required");
2714
- }
2715
2712
  if (!userId) {
2716
2713
  throw new Error("userId is required");
2717
2714
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prmichaelsen/remember-mcp",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "Multi-tenant memory system MCP server with vector search and relationships",
5
5
  "main": "dist/server.js",
6
6
  "type": "module",
@@ -49,6 +49,7 @@
49
49
  "dependencies": {
50
50
  "@modelcontextprotocol/sdk": "^1.0.4",
51
51
  "@prmichaelsen/firebase-admin-sdk-v8": "^2.2.0",
52
+ "@prmichaelsen/mcp-auth": "^7.0.4",
52
53
  "dotenv": "^16.4.5",
53
54
  "weaviate-client": "^3.2.0"
54
55
  },
@@ -105,9 +105,8 @@ export function createServer(
105
105
  userId: string,
106
106
  options: ServerOptions = {}
107
107
  ): Server {
108
- if (!accessToken) {
109
- throw new Error('accessToken is required');
110
- }
108
+ // Note: accessToken is not used by remember-mcp (self-managed data)
109
+ // but required by mcp-auth contract. Can be any value including empty string.
111
110
 
112
111
  if (!userId) {
113
112
  throw new Error('userId is required');