mcp-camoufox 0.4.3 → 0.4.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/README.md +83 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  <div align="center">
2
2
 
3
- <img src="https://raw.githubusercontent.com/daijro/camoufox/main/assets/logo_sm.png" alt="Camoufox" width="120">
3
+ <img src="https://i.imgur.com/enUBkXt.png" alt="Camoufox" width="280">
4
4
 
5
5
  # MCP Camoufox
6
6
 
@@ -122,6 +122,88 @@ Add to `~/.windsurf/mcp.json`:
122
122
  ```
123
123
  </details>
124
124
 
125
+ <details>
126
+ <summary><b>Factory (Droid)</b></summary>
127
+
128
+ Add to `~/.factory/mcp.json` (global) or `.factory/mcp.json` (project):
129
+
130
+ ```json
131
+ {
132
+ "mcpServers": {
133
+ "camoufox": {
134
+ "type": "stdio",
135
+ "command": "npx",
136
+ "args": ["-y", "mcp-camoufox@latest"],
137
+ "disabled": false
138
+ }
139
+ }
140
+ }
141
+ ```
142
+
143
+ Or via CLI:
144
+ ```bash
145
+ droid mcp add camoufox "npx -y mcp-camoufox@latest"
146
+ ```
147
+ </details>
148
+
149
+ <details>
150
+ <summary><b>OpenCode</b></summary>
151
+
152
+ Add to `~/.config/opencode/opencode.json` (global) or `opencode.json` (project):
153
+
154
+ ```json
155
+ {
156
+ "mcp": {
157
+ "camoufox": {
158
+ "type": "local",
159
+ "command": ["npx", "-y", "mcp-camoufox@latest"],
160
+ "enabled": true
161
+ }
162
+ }
163
+ }
164
+ ```
165
+
166
+ > Note: OpenCode uses `"type": "local"` (not `"stdio"`) and `command` as a single array.
167
+ </details>
168
+
169
+ <details>
170
+ <summary><b>Trae (ByteDance)</b></summary>
171
+
172
+ Add to `~/.trae/mcp.json` (global) or `.trae/mcp.json` (project):
173
+
174
+ ```json
175
+ {
176
+ "mcpServers": [
177
+ {
178
+ "name": "camoufox",
179
+ "command": ["npx", "-y", "mcp-camoufox@latest"]
180
+ }
181
+ ]
182
+ }
183
+ ```
184
+
185
+ > Note: Trae uses an **array** format for `mcpServers`, not an object.
186
+ </details>
187
+
188
+ <details>
189
+ <summary><b>Antigravity (Google)</b></summary>
190
+
191
+ Add to `~/.gemini/antigravity/mcp_config.json`:
192
+
193
+ ```json
194
+ {
195
+ "mcpServers": {
196
+ "camoufox": {
197
+ "command": "npx",
198
+ "args": ["-y", "mcp-camoufox@latest"]
199
+ }
200
+ }
201
+ }
202
+ ```
203
+
204
+ Or via UI: Agent Panel > `...` > MCP Servers > Manage MCP Servers > View raw config.
205
+ </details>
206
+
125
207
  ### Requirements
126
208
 
127
209
  | Requirement | Version | Check |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-camoufox",
3
- "version": "0.4.3",
3
+ "version": "0.4.5",
4
4
  "description": "MCP server for stealth browser automation via Camoufox — 39 tools, Chrome DevTools MCP-level power with anti-bot stealth",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",