mnemos-capture 1.0.3 → 1.0.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.
@@ -1,5 +1,5 @@
1
1
  // MCP server that runs locally via stdio and proxies to the hosted Mnemos API.
2
- // Used by Claude Code: claude mcp add mnemos -- npx mnemos serve-mcp --key <api-key>
2
+ // Used by Claude Code: claude mcp add mnemos -- npx mnemos-capture serve-mcp --key <api-key>
3
3
  const HOSTED_URL = "https://mnemos-capture.vercel.app/api/mcp";
4
4
  function sendMessage(msg) {
5
5
  const json = JSON.stringify(msg);
@@ -33,7 +33,7 @@ export async function serveMcp() {
33
33
  const apiKey = keyIdx !== -1 ? args[keyIdx + 1] : undefined;
34
34
  if (!apiKey) {
35
35
  process.stderr.write("\nMnemos MCP server requires an API key.\n");
36
- process.stderr.write("Usage: npx mnemos serve-mcp --key <your-api-key>\n\n");
36
+ process.stderr.write("Usage: npx mnemos-capture serve-mcp --key <your-api-key>\n\n");
37
37
  process.stderr.write("Get your API key at: https://mnemos-capture.vercel.app/onboard\n\n");
38
38
  process.exit(1);
39
39
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mnemos-capture",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "Zero-friction knowledge capture for agentic workflows. Paste anything → Claude extracts insights → auto-commits to your knowledge repo → your Claude Code workflow picks it up.",
5
5
  "type": "module",
6
6
  "bin": {