ai-cli-mcp 2.8.2 → 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.
- package/.github/workflows/publish.yml +15 -0
- package/CHANGELOG.md +7 -0
- package/package.json +1 -1
- package/server.json +2 -2
|
@@ -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,10 @@
|
|
|
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
|
+
|
|
1
8
|
## [2.8.2](https://github.com/mkXultra/ai-cli-mcp/compare/v2.8.1...v2.8.2) (2026-03-02)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
package/server.json
CHANGED
|
@@ -6,12 +6,12 @@
|
|
|
6
6
|
"url": "https://github.com/mkXultra/ai-cli-mcp",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "2.8.
|
|
9
|
+
"version": "2.8.2",
|
|
10
10
|
"packages": [
|
|
11
11
|
{
|
|
12
12
|
"registryType": "npm",
|
|
13
13
|
"identifier": "ai-cli-mcp",
|
|
14
|
-
"version": "2.8.
|
|
14
|
+
"version": "2.8.2",
|
|
15
15
|
"transport": {
|
|
16
16
|
"type": "stdio"
|
|
17
17
|
}
|