mcp-hydrocoder-vision 0.1.5 → 0.1.6
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/INSTALL.md +16 -2
- package/package.json +1 -1
package/INSTALL.md
CHANGED
|
@@ -32,13 +32,27 @@ npm install -g mcp-hydrocoder-vision
|
|
|
32
32
|
}
|
|
33
33
|
```
|
|
34
34
|
|
|
35
|
-
### 3.
|
|
35
|
+
### 3. 授权工具权限(可选)
|
|
36
|
+
|
|
37
|
+
在 `~/.claude/settings.json` 中添加以下配置,可避免每次使用工具时手动确认:
|
|
38
|
+
|
|
39
|
+
```json
|
|
40
|
+
{
|
|
41
|
+
"mcpServerPermissions": {
|
|
42
|
+
"hydrocoder-vision": {
|
|
43
|
+
"tools": ["analyzeImage", "extractText", "describeForCode"]
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
### 4. 启动 LM Studio
|
|
36
50
|
|
|
37
51
|
1. 打开 LM Studio
|
|
38
52
|
2. 下载并加载 `Qwen3-VL-4B-Instruct` 模型
|
|
39
53
|
3. 启动本地服务器(默认端口:1234)
|
|
40
54
|
|
|
41
|
-
###
|
|
55
|
+
### 5. 验证安装
|
|
42
56
|
|
|
43
57
|
在 Claude 中输入 `/image`,应能看到 `analyzeImage`、`extractText`、`describeForCode` 等工具可用。
|
|
44
58
|
|