mrmainspring 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.
Files changed (2) hide show
  1. package/dist/cli.js +8 -1
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -65,8 +65,15 @@ export function runCliCommand(args) {
65
65
  process.stdout.write(report);
66
66
  }
67
67
  else {
68
- process.stdout.write("\nNo MCP clients detected. Paste this into your client config manually:\n\n");
68
+ process.stdout.write("\nNo MCP clients detected automatically.\n" +
69
+ "Add this to your MCP client config (Claude Desktop, Cursor, Windsurf, Zed, VS Code, Continue, or any MCP host):\n\n");
69
70
  process.stdout.write(`${formatMcpConfig()}\n`);
71
+ process.stdout.write("\nConfig file locations:\n" +
72
+ " Claude Desktop ~/Library/Application Support/Claude/claude_desktop_config.json\n" +
73
+ " Cursor ~/.cursor/mcp.json\n" +
74
+ " Windsurf ~/.codeium/windsurf/mcp_config.json\n" +
75
+ " Zed ~/.config/zed/settings.json (context_servers format)\n" +
76
+ " VS Code ~/.vscode/mcp.json\n\n");
70
77
  }
71
78
  return true;
72
79
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mrmainspring",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "description": "Mr Mainspring MCP backend with memory, Grimoire policies, audit, Casper anchoring, and x402 settlement boundaries.",
5
5
  "license": "MIT",
6
6
  "type": "module",