aegis-mcp-server 0.1.12 → 0.1.15

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,47 @@
1
+ name: Publish to MCP Registry
2
+
3
+ on:
4
+ push:
5
+ tags: ["v*"]
6
+
7
+ jobs:
8
+ publish:
9
+ runs-on: ubuntu-latest
10
+ permissions:
11
+ id-token: write
12
+ contents: read
13
+ steps:
14
+ - name: Checkout code
15
+ uses: actions/checkout@v5
16
+
17
+ - name: Setup Node.js
18
+ uses: actions/setup-node@v5
19
+ with:
20
+ node-version: "lts/*"
21
+ registry-url: "https://registry.npmjs.org"
22
+
23
+ - name: Install dependencies
24
+ run: npm ci
25
+
26
+ - name: Build
27
+ run: npm run build
28
+
29
+ - name: Publish to npm
30
+ run: npm publish
31
+ env:
32
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
33
+
34
+ - name: Sync version to server.json
35
+ run: |
36
+ VERSION=${GITHUB_REF#refs/tags/v}
37
+ sed -i "s/\"version\": \"[^\"]*\"/\"version\": \"$VERSION\"/g" server.json
38
+
39
+ - name: Install mcp-publisher
40
+ run: |
41
+ curl -L "https://github.com/modelcontextprotocol/registry/releases/latest/download/mcp-publisher_$(uname -s | tr '[:upper:]' '[:lower:]')_$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/').tar.gz" | tar xz mcp-publisher
42
+
43
+ - name: Authenticate to MCP Registry
44
+ run: ./mcp-publisher login github-oidc
45
+
46
+ - name: Publish to MCP Registry
47
+ run: ./mcp-publisher publish server.json
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aegis-mcp-server",
3
- "version": "0.1.12",
3
+ "version": "0.1.15",
4
4
  "description": "MCP enforcement layer for the Aegis agent governance specification",
5
5
  "type": "module",
6
6
  "bin": {
package/server.json CHANGED
@@ -6,13 +6,13 @@
6
6
  "url": "https://github.com/cleburn/aegis-mcp",
7
7
  "source": "github"
8
8
  },
9
- "version": "0.1.11",
9
+ "version": "0.1.12",
10
10
  "packages": [
11
11
  {
12
12
  "registryType": "npm",
13
13
  "registryBaseUrl": "https://registry.npmjs.org",
14
14
  "identifier": "aegis-mcp-server",
15
- "version": "0.1.11",
15
+ "version": "0.1.12",
16
16
  "transport": {
17
17
  "type": "stdio"
18
18
  }