agent-ide 0.1.4 → 0.1.5
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 +24 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,30 +8,49 @@
|
|
|
8
8
|
|
|
9
9
|
一行指令安裝:
|
|
10
10
|
```bash
|
|
11
|
-
|
|
11
|
+
# 從 npm 安裝(推薦)
|
|
12
|
+
claude mcp add agent-ide -- npx -y agent-ide-mcp
|
|
13
|
+
|
|
14
|
+
# 或從 GitHub 安裝最新版
|
|
15
|
+
claude mcp add agent-ide -- npx -y github:vivalalova/agent-ide
|
|
12
16
|
```
|
|
13
17
|
|
|
14
|
-
|
|
18
|
+
安裝完成後:
|
|
19
|
+
1. 重新啟動 Claude Code
|
|
20
|
+
2. 輸入「請列出所有可用的 agent-ide 工具」驗證安裝
|
|
21
|
+
3. 開始使用!
|
|
15
22
|
|
|
16
23
|
<details>
|
|
17
24
|
<summary>手動設定 MCP(Claude Desktop / 其他)</summary>
|
|
18
25
|
|
|
19
26
|
編輯設定檔:
|
|
20
27
|
- **Claude Desktop**: `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS) 或 `%APPDATA%/Claude/claude_desktop_config.json` (Windows)
|
|
21
|
-
- **Claude Code**:
|
|
28
|
+
- **Claude Code**: 使用 `claude mcp add` 命令(自動設定)
|
|
22
29
|
|
|
23
|
-
|
|
30
|
+
加入以下設定:
|
|
24
31
|
```json
|
|
25
32
|
{
|
|
26
33
|
"mcpServers": {
|
|
27
34
|
"agent-ide": {
|
|
28
35
|
"command": "npx",
|
|
29
|
-
"args": ["
|
|
36
|
+
"args": ["-y", "agent-ide-mcp"],
|
|
30
37
|
"env": {}
|
|
31
38
|
}
|
|
32
39
|
}
|
|
33
40
|
}
|
|
34
41
|
```
|
|
42
|
+
|
|
43
|
+
**其他管理命令**:
|
|
44
|
+
```bash
|
|
45
|
+
# 列出所有 MCP servers
|
|
46
|
+
claude mcp list
|
|
47
|
+
|
|
48
|
+
# 移除 MCP server
|
|
49
|
+
claude mcp remove agent-ide
|
|
50
|
+
|
|
51
|
+
# 檢查連接狀態
|
|
52
|
+
claude mcp list
|
|
53
|
+
```
|
|
35
54
|
</details>
|
|
36
55
|
|
|
37
56
|
### 可用工具
|