@elvatis_com/elvatis-mcp 1.0.5 → 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.
- package/.mcp.json.example +15 -0
- package/README.md +1 -1
- package/package.json +3 -2
|
@@ -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`
|
|
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
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elvatis_com/elvatis-mcp",
|
|
3
|
-
"version": "1.0.
|
|
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",
|