ai-cli-mcp 2.0.0 → 2.0.1
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/README.md +0 -4
- package/dist/server.js +1 -6
- package/package.json +1 -1
- package/src/server.ts +1 -6
package/README.md
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
# AI CLI MCP Server
|
|
2
2
|
|
|
3
|
-
<img src="assets/claude_code_mcp_logo.png" alt="AI CLI MCP Logo">
|
|
4
|
-
|
|
5
3
|
[](https://www.npmjs.com/package/ai-cli-mcp)
|
|
6
4
|
[](/CHANGELOG.md)
|
|
7
5
|
|
|
@@ -31,8 +29,6 @@ This MCP server provides tools that can be used by LLMs to interact with AI CLI
|
|
|
31
29
|
- Claude has wider system access and can do things that Cursor/Windsurf can't do (or believe they can't), so whenever they are stuck just ask them "use claude code" and it will usually un-stuck them.
|
|
32
30
|
- Agents in Agents rules.
|
|
33
31
|
|
|
34
|
-
<img src="assets/agents_in_agents_meme.jpg" alt="Agents in Agents Meme">
|
|
35
|
-
|
|
36
32
|
## Prerequisites
|
|
37
33
|
|
|
38
34
|
- Node.js v20 or later (Use fnm or nvm to install)
|
package/dist/server.js
CHANGED
|
@@ -9,7 +9,7 @@ import { join, resolve as pathResolve } from 'node:path';
|
|
|
9
9
|
import * as path from 'path';
|
|
10
10
|
import { parseCodexOutput, parseClaudeOutput } from './parsers.js';
|
|
11
11
|
// Server version - update this when releasing new versions
|
|
12
|
-
const SERVER_VERSION = "2.0.
|
|
12
|
+
const SERVER_VERSION = "2.0.1";
|
|
13
13
|
// Model alias mappings for user-friendly model names
|
|
14
14
|
const MODEL_ALIASES = {
|
|
15
15
|
'haiku': 'claude-3-5-haiku-20241022'
|
|
@@ -223,11 +223,6 @@ export class ClaudeCodeServer {
|
|
|
223
223
|
inputSchema: {
|
|
224
224
|
type: 'object',
|
|
225
225
|
properties: {
|
|
226
|
-
agent: {
|
|
227
|
-
type: 'string',
|
|
228
|
-
description: 'The agent to use: "claude" or "codex". Defaults to "claude".',
|
|
229
|
-
enum: ['claude', 'codex'],
|
|
230
|
-
},
|
|
231
226
|
prompt: {
|
|
232
227
|
type: 'string',
|
|
233
228
|
description: 'The detailed natural language prompt for the agent to execute. Either this or prompt_file is required.',
|
package/package.json
CHANGED
package/src/server.ts
CHANGED
|
@@ -16,7 +16,7 @@ import * as path from 'path';
|
|
|
16
16
|
import { parseCodexOutput, parseClaudeOutput } from './parsers.js';
|
|
17
17
|
|
|
18
18
|
// Server version - update this when releasing new versions
|
|
19
|
-
const SERVER_VERSION = "2.0.
|
|
19
|
+
const SERVER_VERSION = "2.0.1";
|
|
20
20
|
|
|
21
21
|
// Model alias mappings for user-friendly model names
|
|
22
22
|
const MODEL_ALIASES: Record<string, string> = {
|
|
@@ -300,11 +300,6 @@ export class ClaudeCodeServer {
|
|
|
300
300
|
inputSchema: {
|
|
301
301
|
type: 'object',
|
|
302
302
|
properties: {
|
|
303
|
-
agent: {
|
|
304
|
-
type: 'string',
|
|
305
|
-
description: 'The agent to use: "claude" or "codex". Defaults to "claude".',
|
|
306
|
-
enum: ['claude', 'codex'],
|
|
307
|
-
},
|
|
308
303
|
prompt: {
|
|
309
304
|
type: 'string',
|
|
310
305
|
description: 'The detailed natural language prompt for the agent to execute. Either this or prompt_file is required.',
|