@elvatis_com/elvatis-mcp 1.0.4 → 1.0.6

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.
@@ -0,0 +1,15 @@
1
+ {
2
+ "mcpServers": {
3
+ "elvatis-mcp": {
4
+ "command": "node",
5
+ "args": ["./dist/index.js"],
6
+ "cwd": "/absolute/path/to/elvatis-mcp",
7
+ "env": {
8
+ "SSH_HOST": "192.168.x.x",
9
+ "SSH_PORT": "22",
10
+ "SSH_USER": "your-user",
11
+ "SSH_KEY_PATH": "/absolute/path/to/.ssh/your_key"
12
+ }
13
+ }
14
+ }
15
+ }
package/README.md CHANGED
@@ -404,7 +404,7 @@ Open this file (create it if needed):
404
404
  > On Windows, always use full absolute paths. The MSIX sandbox does not resolve `~` or relative paths.
405
405
 
406
406
  #### Claude Code (this project)
407
- `.mcp.json` is already included. Copy `.env.example` to `.env` and fill in your values.
407
+ Copy `.mcp.json.example` to `.mcp.json` (gitignored, never committed) and fill in your paths and SSH details. Then copy `.env.example` to `.env` for the remaining config.
408
408
 
409
409
  #### Claude Code (global)
410
410
  ```bash
@@ -503,12 +503,12 @@ On Windows, elvatis-mcp automatically resolves the SSH binary to `C:\Windows\Sys
503
503
 
504
504
  ## `/mcp-help` Slash Command
505
505
 
506
- In Claude Code, the `/project:mcp-help` slash command shows the full 34-tool routing guide as formatted output:
506
+ In Claude Code, the `/mcp-help` slash command shows the full 34-tool routing guide as formatted output:
507
507
 
508
508
  ```
509
- /project:mcp-help # full guide
510
- /project:mcp-help openclaw_status # help for a specific tool
511
- /project:mcp-help analyze this trading strategy for risk # routing recommendation
509
+ /mcp-help # full guide
510
+ /mcp-help openclaw_status # help for a specific tool
511
+ /mcp-help analyze this trading strategy for risk # routing recommendation
512
512
  ```
513
513
 
514
514
  ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elvatis_com/elvatis-mcp",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "description": "MCP server for OpenClaw — expose smart home, memory, cron, and more to Claude Desktop, Cursor, Windsurf, and any MCP client",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -44,7 +44,8 @@
44
44
  "dist",
45
45
  "README.md",
46
46
  "LICENSE",
47
- ".env.example"
47
+ ".env.example",
48
+ ".mcp.json.example"
48
49
  ],
49
50
  "repository": {
50
51
  "type": "git",