illustrator-mcp-server 1.2.6 → 1.2.9
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.ja.md +14 -21
- package/README.md +15 -22
- package/dist/bundle.cjs +40079 -0
- package/dist/executor/jsx-runner.d.ts.map +1 -1
- package/dist/executor/jsx-runner.js +7 -1
- package/dist/executor/jsx-runner.js.map +1 -1
- package/package.json +5 -3
package/README.ja.md
CHANGED
|
@@ -47,10 +47,17 @@ claude mcp add illustrator-mcp -- npx illustrator-mcp-server
|
|
|
47
47
|
|
|
48
48
|
### Claude Desktop
|
|
49
49
|
|
|
50
|
-
|
|
50
|
+
1. [GitHub Releases](https://github.com/ie3jp/illustrator-mcp-server/releases/latest) から **`illustrator-mcp-server-x.x.x.mcpb`** をダウンロード
|
|
51
|
+
2. Claude Desktop を開き、**設定** → **拡張機能** を開く
|
|
52
|
+
3. ダウンロードした `.mcpb` ファイルを拡張機能パネルにドラッグ&ドロップ
|
|
53
|
+
4. **インストール** ボタンをクリック
|
|
54
|
+
|
|
55
|
+
> **更新について:** `.mcpb` 拡張機能は自動更新されません。更新するには新しいバージョンをダウンロードして再インストールしてください。自動更新が必要な場合は、下記の npx 方式をお使いください。
|
|
51
56
|
|
|
52
57
|
<details>
|
|
53
|
-
<summary><strong
|
|
58
|
+
<summary><strong>別の方法: 手動設定(npx 経由で常に最新版)</strong></summary>
|
|
59
|
+
|
|
60
|
+
設定ファイルを開いて、接続情報を書き込みます。
|
|
54
61
|
|
|
55
62
|
#### 1. 設定ファイルを開く
|
|
56
63
|
|
|
@@ -58,13 +65,8 @@ Claude Desktop のメニューバーから:
|
|
|
58
65
|
|
|
59
66
|
**Claude** → **設定** → 左サイドバーの **開発者** → **設定を編集** ボタンをクリック
|
|
60
67
|
|
|
61
|
-
Finderに `claude_desktop_config.json` ファイルが表示されるので、
|
|
62
|
-
テキストエディタで `claude_desktop_config.json` を開きます。
|
|
63
|
-
|
|
64
68
|
#### 2. 設定を書き込む
|
|
65
69
|
|
|
66
|
-
ファイルが空、または `{}` だけの場合は、**中身をすべて消して**以下をそのままコピー&ペーストしてください:
|
|
67
|
-
|
|
68
70
|
```json
|
|
69
71
|
{
|
|
70
72
|
"mcpServers": {
|
|
@@ -76,25 +78,16 @@ Finderに `claude_desktop_config.json` ファイルが表示されるので、
|
|
|
76
78
|
}
|
|
77
79
|
```
|
|
78
80
|
|
|
79
|
-
>
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
他のサーバーの設定...
|
|
85
|
-
},
|
|
86
|
-
"illustrator": {
|
|
87
|
-
"command": "npx",
|
|
88
|
-
"args": ["illustrator-mcp-server"]
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
```
|
|
81
|
+
> **注意:** nvm / mise / fnm 等のバージョンマネージャで Node.js をインストールした場合、Claude Desktop が `npx` を見つけられないことがあります。その場合はフルパスを指定してください:
|
|
82
|
+
> ```json
|
|
83
|
+
> "command": "/フルパス/npx"
|
|
84
|
+
> ```
|
|
85
|
+
> ターミナルで `which npx` を実行するとパスを確認できます。
|
|
92
86
|
|
|
93
87
|
#### 3. 保存して再起動
|
|
94
88
|
|
|
95
89
|
1. ファイルを保存(⌘S)してテキストエディタを閉じる
|
|
96
90
|
2. Claude Desktop を **完全に終了**(⌘Q)して再度開く
|
|
97
|
-
3. **Claude** → **設定** → **開発者** を開き、illustrator サーバーが表示されていれば接続成功です
|
|
98
91
|
|
|
99
92
|
</details>
|
|
100
93
|
|
package/README.md
CHANGED
|
@@ -49,10 +49,17 @@ claude mcp add illustrator-mcp -- npx illustrator-mcp-server
|
|
|
49
49
|
|
|
50
50
|
### Claude Desktop
|
|
51
51
|
|
|
52
|
-
|
|
52
|
+
1. Download **`illustrator-mcp-server-x.x.x.mcpb`** from [GitHub Releases](https://github.com/ie3jp/illustrator-mcp-server/releases/latest)
|
|
53
|
+
2. Open Claude Desktop → **Settings** → **Extensions**
|
|
54
|
+
3. Drag and drop the `.mcpb` file into the Extensions panel
|
|
55
|
+
4. Click the **Install** button
|
|
56
|
+
|
|
57
|
+
> **Updating:** The `.mcpb` extension does not auto-update. To update, download the new version and reinstall. If you prefer automatic updates, use the npx method below instead.
|
|
53
58
|
|
|
54
59
|
<details>
|
|
55
|
-
<summary><strong>
|
|
60
|
+
<summary><strong>Alternative: manual config (always up to date via npx)</strong></summary>
|
|
61
|
+
|
|
62
|
+
Open the config file and add the connection settings.
|
|
56
63
|
|
|
57
64
|
#### 1. Open the config file
|
|
58
65
|
|
|
@@ -60,13 +67,8 @@ From the Claude Desktop menu bar:
|
|
|
60
67
|
|
|
61
68
|
**Claude** → **Settings...** → **Developer** (in the left sidebar) → Click the **Edit Config** button
|
|
62
69
|
|
|
63
|
-
The `claude_desktop_config.json` file will appear in Finder (macOS) or Explorer (Windows).
|
|
64
|
-
Open it with a text editor.
|
|
65
|
-
|
|
66
70
|
#### 2. Add the settings
|
|
67
71
|
|
|
68
|
-
If the file is empty or contains only `{}`, **replace everything** with the following (copy & paste):
|
|
69
|
-
|
|
70
72
|
```json
|
|
71
73
|
{
|
|
72
74
|
"mcpServers": {
|
|
@@ -78,25 +80,16 @@ If the file is empty or contains only `{}`, **replace everything** with the foll
|
|
|
78
80
|
}
|
|
79
81
|
```
|
|
80
82
|
|
|
81
|
-
> If you
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
...other server settings...
|
|
87
|
-
},
|
|
88
|
-
"illustrator": {
|
|
89
|
-
"command": "npx",
|
|
90
|
-
"args": ["illustrator-mcp-server"]
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
```
|
|
83
|
+
> **Note:** If you installed Node.js via a version manager (nvm, mise, fnm, etc.), Claude Desktop may not find `npx`. In that case, use the full path:
|
|
84
|
+
> ```json
|
|
85
|
+
> "command": "/full/path/to/npx"
|
|
86
|
+
> ```
|
|
87
|
+
> Run `which npx` in your terminal to find the path.
|
|
94
88
|
|
|
95
89
|
#### 3. Save and restart
|
|
96
90
|
|
|
97
|
-
1. Save the file
|
|
91
|
+
1. Save the file and close the text editor
|
|
98
92
|
2. **Fully quit** Claude Desktop (⌘Q / Ctrl+Q) and reopen it
|
|
99
|
-
3. Open **Claude** → **Settings...** → **Developer** — if the illustrator server appears, the connection is working
|
|
100
93
|
|
|
101
94
|
</details>
|
|
102
95
|
|