@mpowr/nexus-mcp 0.6.0 → 0.6.1

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,38 @@
1
+ name: CI
2
+
3
+ on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
+ branches: [main]
8
+
9
+ jobs:
10
+ test:
11
+ name: Test (Node ${{ matrix.node-version }})
12
+ runs-on: ubuntu-latest
13
+ strategy:
14
+ fail-fast: false
15
+ matrix:
16
+ node-version: [20, 22]
17
+
18
+ steps:
19
+ - name: Checkout
20
+ uses: actions/checkout@v4
21
+
22
+ - name: Setup Node.js ${{ matrix.node-version }}
23
+ uses: actions/setup-node@v4
24
+ with:
25
+ node-version: ${{ matrix.node-version }}
26
+ cache: npm
27
+
28
+ - name: Install dependencies
29
+ run: npm ci
30
+
31
+ - name: Typecheck
32
+ run: npm run typecheck
33
+
34
+ - name: Test
35
+ run: npm test
36
+
37
+ - name: Build
38
+ run: npm run build
@@ -0,0 +1,57 @@
1
+ name: Release
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - "v*"
7
+
8
+ permissions:
9
+ contents: write
10
+
11
+ jobs:
12
+ release:
13
+ name: Publish to npm
14
+ runs-on: ubuntu-latest
15
+
16
+ steps:
17
+ - name: Checkout
18
+ uses: actions/checkout@v4
19
+
20
+ - name: Setup Node.js
21
+ uses: actions/setup-node@v4
22
+ with:
23
+ node-version: 22
24
+ cache: npm
25
+ registry-url: https://registry.npmjs.org
26
+
27
+ - name: Install dependencies
28
+ run: npm ci
29
+
30
+ - name: Typecheck
31
+ run: npm run typecheck
32
+
33
+ - name: Test
34
+ run: npm test
35
+
36
+ - name: Build
37
+ run: npm run build
38
+
39
+ - name: Verify version matches tag
40
+ run: |
41
+ PKG_VERSION="v$(node -p "require('./package.json').version")"
42
+ TAG_VERSION="${GITHUB_REF#refs/tags/}"
43
+ if [ "$PKG_VERSION" != "$TAG_VERSION" ]; then
44
+ echo "ERROR: package.json version ($PKG_VERSION) does not match tag ($TAG_VERSION)"
45
+ exit 1
46
+ fi
47
+ echo "Version verified: $TAG_VERSION"
48
+
49
+ - name: Publish to npm
50
+ run: npm publish --access public
51
+ env:
52
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
53
+
54
+ - name: Create GitHub Release
55
+ uses: softprops/action-gh-release@v2
56
+ with:
57
+ generate_release_notes: true
package/README.md CHANGED
@@ -1,8 +1,33 @@
1
1
  # nexus-mcp
2
2
 
3
+ [![npm](https://img.shields.io/npm/v/@mpowr/nexus-mcp)](https://www.npmjs.com/package/@mpowr/nexus-mcp)
4
+
3
5
  MCP server for the mpowr-nexus platform. Provides the mediation layer between
4
6
  local agent runtimes (terminals) and the Nexus HTTP API.
5
7
 
8
+ ## Install
9
+
10
+ ```bash
11
+ npx @mpowr/nexus-mcp
12
+ ```
13
+
14
+ Or add to your agent's MCP configuration:
15
+
16
+ ```json
17
+ {
18
+ "mcpServers": {
19
+ "nexus": {
20
+ "command": "npx",
21
+ "args": ["-y", "@mpowr/nexus-mcp"],
22
+ "env": {
23
+ "NEXUS_API_URL": "https://nexus.mpowr.tech",
24
+ "NEXUS_PRIVATE_TOKEN": "nxs_pat_..."
25
+ }
26
+ }
27
+ }
28
+ }
29
+ ```
30
+
6
31
  ## Architecture
7
32
 
8
33
  The server exposes 38 tools across 4 layers via the Model Context Protocol
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mpowr/nexus-mcp",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "MCP server for the mpowr-nexus platform",
5
5
  "type": "module",
6
6
  "main": "dist/server.js",