ai-cli-mcp 2.8.1 → 2.8.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.
- package/CHANGELOG.md +7 -0
- package/package.json +2 -1
- package/server.json +20 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [2.8.2](https://github.com/mkXultra/ai-cli-mcp/compare/v2.8.1...v2.8.2) (2026-03-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* MCP Registry公開用のmcpNameとserver.jsonを追加 ([cc45e0b](https://github.com/mkXultra/ai-cli-mcp/commit/cc45e0bf80632b1e94247cb82492c45f6a9489dd))
|
|
7
|
+
|
|
1
8
|
## [2.8.1](https://github.com/mkXultra/ai-cli-mcp/compare/v2.8.0...v2.8.1) (2026-03-02)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ai-cli-mcp",
|
|
3
|
-
"version": "2.8.
|
|
3
|
+
"version": "2.8.2",
|
|
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.1",
|
|
10
|
+
"packages": [
|
|
11
|
+
{
|
|
12
|
+
"registryType": "npm",
|
|
13
|
+
"identifier": "ai-cli-mcp",
|
|
14
|
+
"version": "2.8.1",
|
|
15
|
+
"transport": {
|
|
16
|
+
"type": "stdio"
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
}
|