mcp-hydrocoder-vision 0.1.3 → 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.
Files changed (2) hide show
  1. package/INSTALL.md +2 -28
  2. package/package.json +1 -1
package/INSTALL.md CHANGED
@@ -7,25 +7,15 @@
7
7
 
8
8
  ## 安装步骤
9
9
 
10
- ### 1. 安装 MCP 包
11
-
12
- 全局安装:
10
+ ### 1. 全局安装 MCP 包
13
11
 
14
12
  ```bash
15
13
  npm install -g mcp-hydrocoder-vision
16
14
  ```
17
15
 
18
- 或者使用 npx(无需全局安装):
19
-
20
- ```bash
21
- npx -y mcp-hydrocoder-vision
22
- ```
23
-
24
16
  ### 2. 配置 Claude
25
17
 
26
- #### 方式一:Claude Desktop( graphical 界面)
27
-
28
- 打开 Claude Desktop,进入 **Settings** → **Developer** → **Edit Settings**,将以下配置添加到 `~/.claude/settings.json`(或 `~/.claude.json`)中:
18
+ 编辑用户目录下的 `~/.claude.json` 文件,添加以下配置:
29
19
 
30
20
  ```json
31
21
  {
@@ -42,22 +32,6 @@ npx -y mcp-hydrocoder-vision
42
32
  }
43
33
  ```
44
34
 
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
35
  ### 3. 启动 LM Studio
62
36
 
63
37
  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.5",
4
4
  "description": "Vision MCP Server for Claude Code - Qwen3 VL 4B integration",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",