ai-cli-mcp 2.8.0 → 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 +15 -0
- package/CONTRIBUTING.md +2 -2
- package/docs/RELEASE_CHECKLIST.md +1 -1
- package/docs/development.md +3 -3
- package/package.json +5 -4
- package/server.json +20 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
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
|
+
|
|
8
|
+
## [2.8.1](https://github.com/mkXultra/ai-cli-mcp/compare/v2.8.0...v2.8.1) (2026-03-02)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* リポジトリ名変更に伴うURL・参照の更新 ([909cab7](https://github.com/mkXultra/ai-cli-mcp/commit/909cab77cc1e03f5880bd699ed680c32d990adb5))
|
|
14
|
+
* リポジトリ名変更に伴う再リリース ([c6a165b](https://github.com/mkXultra/ai-cli-mcp/commit/c6a165b101eae5cbc1b9d139227dfd074172a070))
|
|
15
|
+
|
|
1
16
|
# [2.8.0](https://github.com/mkXultra/claude-code-mcp/compare/v2.7.0...v2.8.0) (2026-03-01)
|
|
2
17
|
|
|
3
18
|
|
package/CONTRIBUTING.md
CHANGED
package/docs/development.md
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
6
|
# Clone the repository
|
|
7
|
-
git clone https://github.com/mkXultra/
|
|
8
|
-
cd
|
|
7
|
+
git clone https://github.com/mkXultra/ai-cli-mcp.git
|
|
8
|
+
cd ai-cli-mcp
|
|
9
9
|
|
|
10
10
|
# Install dependencies
|
|
11
11
|
npm install
|
|
@@ -153,4 +153,4 @@ These can be set in your shell environment or within the `env` block of your `mc
|
|
|
153
153
|
|
|
154
154
|
Contributions are welcome!
|
|
155
155
|
|
|
156
|
-
Submit issues and pull requests to the [GitHub repository](https://github.com/mkXultra/
|
|
156
|
+
Submit issues and pull requests to the [GitHub repository](https://github.com/mkXultra/ai-cli-mcp).
|
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",
|
|
@@ -39,7 +40,7 @@
|
|
|
39
40
|
},
|
|
40
41
|
"repository": {
|
|
41
42
|
"type": "git",
|
|
42
|
-
"url": "git+https://github.com/mkXultra/
|
|
43
|
+
"url": "git+https://github.com/mkXultra/ai-cli-mcp.git"
|
|
43
44
|
},
|
|
44
45
|
"keywords": [
|
|
45
46
|
"mcp",
|
|
@@ -52,7 +53,7 @@
|
|
|
52
53
|
"gpt5"
|
|
53
54
|
],
|
|
54
55
|
"bugs": {
|
|
55
|
-
"url": "https://github.com/mkXultra/
|
|
56
|
+
"url": "https://github.com/mkXultra/ai-cli-mcp/issues"
|
|
56
57
|
},
|
|
57
|
-
"homepage": "https://github.com/mkXultra/
|
|
58
|
+
"homepage": "https://github.com/mkXultra/ai-cli-mcp#readme"
|
|
58
59
|
}
|
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
|
+
}
|