mcp-hydrocoder-vision 0.1.3 → 0.1.4

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.
Files changed (2) hide show
  1. package/INSTALL.md +1 -19
  2. package/package.json +1 -1
package/INSTALL.md CHANGED
@@ -23,9 +23,7 @@ npx -y mcp-hydrocoder-vision
23
23
 
24
24
  ### 2. 配置 Claude
25
25
 
26
- #### 方式一:Claude Desktop( graphical 界面)
27
-
28
- 打开 Claude Desktop,进入 **Settings** → **Developer** → **Edit Settings**,将以下配置添加到 `~/.claude/settings.json`(或 `~/.claude.json`)中:
26
+ 编辑用户目录下的 `~/.claude.json` 文件,添加以下配置:
29
27
 
30
28
  ```json
31
29
  {
@@ -42,22 +40,6 @@ npx -y mcp-hydrocoder-vision
42
40
  }
43
41
  ```
44
42
 
45
- #### 方式二:Claude 命令行
46
-
47
- 在终端中运行以下命令:
48
-
49
- ```bash
50
- claude --editing --settings '{"mcpServers":{"hydrocoder-vision":{"command":"npx","args":["-y","mcp-hydrocoder-vision"],"env":{"LM_STUDIO_URL":"http://localhost:1234/v1/chat/completions","VISION_MODEL":"Qwen3-VL-4B-Instruct"}}}}'
51
- ```
52
-
53
- 如果需要指定配置文件路径:
54
-
55
- ```bash
56
- claude --editing --settings-file ~/.claude/settings.json
57
- ```
58
-
59
- 然后手动将配置内容添加到文件中。
60
-
61
43
  ### 3. 启动 LM Studio
62
44
 
63
45
  1. 打开 LM Studio
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-hydrocoder-vision",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Vision MCP Server for Claude Code - Qwen3 VL 4B integration",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",