nova-control-mcp-server 0.0.1 → 0.0.2

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/README.md +26 -9
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -12,12 +12,20 @@ An [MCP (Model Context Protocol)](https://modelcontextprotocol.io) server for co
12
12
 
13
13
  ## Installation
14
14
 
15
+ **No install — run directly with `npx`** (recommended for MCP clients):
16
+
15
17
  ```bash
16
- npm install
17
- npm run build
18
+ npx nova-control-mcp-server --port /dev/ttyACM0
18
19
  ```
19
20
 
20
- The compiled binary lands at `dist/nova-control-mcp-server.js`.
21
+ `npx` downloads the package on first use and caches it locally. This is the simplest way to use the server and requires no global installation.
22
+
23
+ **Global install:**
24
+
25
+ ```bash
26
+ npm install -g nova-control-mcp-server
27
+ nova-control-mcp-server --port /dev/ttyACM0
28
+ ```
21
29
 
22
30
  ## Configuration
23
31
 
@@ -29,12 +37,21 @@ Add the server to `~/Library/Application Support/Claude/claude_desktop_config.js
29
37
  {
30
38
  "mcpServers": {
31
39
  "nova-control": {
32
- "command": "node",
33
- "args": [
34
- "/absolute/path/to/nova-control-mcp-server/dist/nova-control-mcp-server.js",
35
- "--port", "/dev/ttyACM0",
36
- "--baud", "115200"
37
- ]
40
+ "command": "npx",
41
+ "args": ["nova-control-mcp-server", "--port", "/dev/ttyACM0"]
42
+ }
43
+ }
44
+ }
45
+ ```
46
+
47
+ With a custom baud rate:
48
+
49
+ ```json
50
+ {
51
+ "mcpServers": {
52
+ "nova-control": {
53
+ "command": "npx",
54
+ "args": ["nova-control-mcp-server", "--port", "/dev/ttyACM0", "--baud", "115200"]
38
55
  }
39
56
  }
40
57
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "nova-control-mcp-server",
3
3
  "description": "MCP server for controlling a NOVA DIY Artificial Intelligence Robot by Creoqode",
4
- "version": "0.0.1",
4
+ "version": "0.0.2",
5
5
  "type": "module",
6
6
  "keywords": [
7
7
  "nova",
@@ -22,7 +22,8 @@
22
22
  },
23
23
  "license": "MIT",
24
24
  "bin": {
25
- "nova-control-mcp": "./dist/nova-control-mcp-server.js"
25
+ "nova-control-mcp": "./dist/nova-control-mcp-server.js",
26
+ "nova-control-mcp-server": "./dist/nova-control-mcp-server.js"
26
27
  },
27
28
  "files": [
28
29
  "dist"