@memoryrelay/mcp-server 0.1.8 → 0.1.9

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/README.md CHANGED
@@ -70,9 +70,9 @@ Edit `~/.openclaw/openclaw.json`:
70
70
  }
71
71
  ```
72
72
 
73
- #### For Claude Desktop
73
+ #### For Claude Desktop (macOS)
74
74
 
75
- Edit `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS) or `%APPDATA%\Claude\claude_desktop_config.json` (Windows):
75
+ Edit `~/Library/Application Support/Claude/claude_desktop_config.json`:
76
76
 
77
77
  ```json
78
78
  {
@@ -88,6 +88,34 @@ Edit `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS) o
88
88
  }
89
89
  ```
90
90
 
91
+ #### For Claude Desktop (Windows)
92
+
93
+ On Windows, `npx` with scoped packages can fail to resolve the bin entry. Install globally first, then use `node` directly.
94
+
95
+ **Step 1:** Install the package globally:
96
+
97
+ ```bash
98
+ npm install -g @memoryrelay/mcp-server
99
+ ```
100
+
101
+ **Step 2:** Edit `%APPDATA%\Claude\claude_desktop_config.json`:
102
+
103
+ ```json
104
+ {
105
+ "mcpServers": {
106
+ "memoryrelay": {
107
+ "command": "node",
108
+ "args": ["%APPDATA%\\npm\\node_modules\\@memoryrelay\\mcp-server\\dist\\index.js"],
109
+ "env": {
110
+ "MEMORYRELAY_API_KEY": "mem_prod_xxxxx"
111
+ }
112
+ }
113
+ }
114
+ }
115
+ ```
116
+
117
+ > **Note:** Replace `%APPDATA%` with your actual path (e.g., `C:\\Users\\YourName\\AppData\\Roaming`). You can find it by running `echo %APPDATA%` in Command Prompt.
118
+
91
119
  ### 3. Restart Your Client
92
120
 
93
121
  Restart OpenClaw or Claude Desktop to load the MCP server.
@@ -444,7 +472,7 @@ npm run type-check
444
472
  ### Project Structure
445
473
 
446
474
  ```
447
- mcp/
475
+ mcp-server/
448
476
  ├── src/
449
477
  │ ├── index.ts # Entry point
450
478
  │ ├── server.ts # MCP server implementation
@@ -462,7 +490,10 @@ mcp/
462
490
  │ └── SECURITY.md # Security documentation
463
491
  ├── package.json
464
492
  ├── tsconfig.json
493
+ ├── tsup.config.ts
465
494
  ├── vitest.config.ts
495
+ ├── CHANGELOG.md
496
+ ├── LICENSE
466
497
  └── README.md
467
498
  ```
468
499
 
@@ -507,6 +538,21 @@ mcp/
507
538
  ```
508
539
  4. Check firewall/proxy settings
509
540
 
541
+ ### Windows: `npx` Fails with Scoped Package
542
+
543
+ **Problem:** `'memoryrelay-mcp-server' is not recognized` when using `npx` on Windows
544
+
545
+ **Solutions:**
546
+ 1. Install globally instead of using `npx`:
547
+ ```bash
548
+ npm install -g @memoryrelay/mcp-server
549
+ ```
550
+ 2. Use `node` directly in your Claude Desktop config (see [Windows setup](#for-claude-desktop-windows) above)
551
+ 3. Verify the global install path:
552
+ ```bash
553
+ npm root -g
554
+ ```
555
+
510
556
  ### Tools Not Showing Up
511
557
 
512
558
  **Problem:** MCP tools not available in client
@@ -557,7 +603,7 @@ Debug logs go to stderr and include:
557
603
 
558
604
  ### Getting Help
559
605
 
560
- - 📖 [Full Documentation](https://github.com/memoryrelay/mcp-server/tree/main/mcp)
606
+ - 📖 [Full Documentation](https://github.com/memoryrelay/mcp-server#readme)
561
607
  - 🐛 [Report Issues](https://github.com/memoryrelay/mcp-server/issues)
562
608
  - 💬 [Discussions](https://github.com/memoryrelay/mcp-server/discussions)
563
609
  - 🔒 [Security Policy](./docs/SECURITY.md)
@@ -595,7 +641,7 @@ npm run test:security # Security tests only
595
641
 
596
642
  ## 📄 License
597
643
 
598
- MIT License - see [LICENSE](../LICENSE) for details
644
+ MIT License - see [LICENSE](./LICENSE) for details
599
645
 
600
646
  ---
601
647
 
@@ -612,12 +658,18 @@ MIT License - see [LICENSE](../LICENSE) for details
612
658
 
613
659
  ## 🙏 Contributing
614
660
 
615
- Contributions welcome! Please see [CONTRIBUTING.md](../CONTRIBUTING.md) for guidelines.
661
+ Contributions welcome! Please open an issue or pull request on [GitHub](https://github.com/memoryrelay/mcp-server).
616
662
 
617
663
  ---
618
664
 
619
665
  ## 📝 Changelog
620
666
 
667
+ ### v0.1.9 (2026-02-15)
668
+
669
+ - Add Windows-specific Claude Desktop setup instructions (global install + `node` command)
670
+ - Add Windows `npx` scoped package troubleshooting guide
671
+ - Fix project structure diagram, broken links, and missing files in README
672
+
621
673
  ### v0.1.8 (2026-02-15)
622
674
 
623
675
  - Add MCP resources: `memory:///recent` and `memory:///{id}` for direct memory access
package/dist/index.js CHANGED
@@ -366,7 +366,7 @@ var MemoryRelayMCPServer = class {
366
366
  this.server = new Server(
367
367
  {
368
368
  name: "@memoryrelay/mcp-server",
369
- version: "0.1.8"
369
+ version: "0.1.9"
370
370
  },
371
371
  {
372
372
  capabilities: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@memoryrelay/mcp-server",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "description": "MCP server for MemoryRelay - persistent memory for AI agents",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",