ai-cli-mcp 2.8.1 → 2.9.0

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.
@@ -47,3 +47,18 @@ jobs:
47
47
  env:
48
48
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
49
49
  run: npx semantic-release
50
+
51
+ - name: Install mcp-publisher
52
+ run: |
53
+ 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
54
+
55
+ - name: Authenticate to MCP Registry
56
+ run: ./mcp-publisher login github-oidc
57
+
58
+ - name: Set version in server.json
59
+ run: |
60
+ VERSION=$(node -p "require('./package.json').version")
61
+ jq --arg v "$VERSION" '.version = $v | .packages[0].version = $v' server.json > server.tmp && mv server.tmp server.json
62
+
63
+ - name: Publish to MCP Registry
64
+ run: ./mcp-publisher publish
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ # [2.9.0](https://github.com/mkXultra/ai-cli-mcp/compare/v2.8.2...v2.9.0) (2026-03-02)
2
+
3
+
4
+ ### Features
5
+
6
+ * MCP Registry公開をCI/CDに統合 ([366d4db](https://github.com/mkXultra/ai-cli-mcp/commit/366d4db1ab63dcf6290c0f72f16fe875f9846464))
7
+
8
+ ## [2.8.2](https://github.com/mkXultra/ai-cli-mcp/compare/v2.8.1...v2.8.2) (2026-03-02)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * MCP Registry公開用のmcpNameとserver.jsonを追加 ([cc45e0b](https://github.com/mkXultra/ai-cli-mcp/commit/cc45e0bf80632b1e94247cb82492c45f6a9489dd))
14
+
1
15
  ## [2.8.1](https://github.com/mkXultra/ai-cli-mcp/compare/v2.8.0...v2.8.1) (2026-03-02)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "ai-cli-mcp",
3
- "version": "2.8.1",
3
+ "version": "2.9.0",
4
+ "mcpName": "io.github.mkXultra/ai-cli-mcp",
4
5
  "description": "MCP server for AI CLI tools (Claude, Codex, and Gemini) with background process management",
5
6
  "author": "mkXultra",
6
7
  "license": "MIT",
package/server.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
+ "name": "io.github.mkXultra/ai-cli-mcp",
4
+ "description": "MCP server for AI CLI tools (Claude, Codex, and Gemini) with background process management",
5
+ "repository": {
6
+ "url": "https://github.com/mkXultra/ai-cli-mcp",
7
+ "source": "github"
8
+ },
9
+ "version": "2.8.2",
10
+ "packages": [
11
+ {
12
+ "registryType": "npm",
13
+ "identifier": "ai-cli-mcp",
14
+ "version": "2.8.2",
15
+ "transport": {
16
+ "type": "stdio"
17
+ }
18
+ }
19
+ ]
20
+ }