@memly/mcp-server 0.2.0 → 0.2.1

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
@@ -18,7 +18,17 @@
18
18
 
19
19
  Go to [memly.site/dashboard/api-keys](https://memly.site/dashboard/api-keys)
20
20
 
21
- ### 2. Configure your IDE
21
+ ### 2. Auto-setup (one command)
22
+
23
+ Run this in your project root — auto-detects your IDE and writes the instruction file:
24
+
25
+ ```bash
26
+ npx @memly/mcp-server init
27
+ ```
28
+
29
+ This creates the right file for your IDE so Memly loads context automatically on every conversation. Run once, forget forever.
30
+
31
+ ### 3. Configure your IDE's MCP server
22
32
 
23
33
  **VS Code / Copilot** — create `.vscode/mcp.json`:
24
34
 
package/dist/index.js CHANGED
@@ -20371,7 +20371,7 @@ function runInit() {
20371
20371
 
20372
20372
  // src/index.ts
20373
20373
  var apiKey = process.env.MEMLY_API_KEY;
20374
- if (process.argv.includes("--init")) {
20374
+ if (process.argv.includes("--init") || process.argv.includes("init")) {
20375
20375
  runInit();
20376
20376
  process.exit(0);
20377
20377
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@memly/mcp-server",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Memly MCP Server — persistent memory for any IDE",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",