@supatest/cli 0.0.45 → 0.0.47
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.md +2 -8
- package/dist/index.js +391 -397
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -173,7 +173,7 @@ Navigate with arrow keys and press Enter to select. The current provider is high
|
|
|
173
173
|
|
|
174
174
|
### Model Context Protocol (`/mcp`)
|
|
175
175
|
|
|
176
|
-
MCP (Model Context Protocol) servers extend Supatest with additional tools and capabilities.
|
|
176
|
+
MCP (Model Context Protocol) servers extend Supatest with additional tools and capabilities. You can configure custom MCP servers for specialized integrations.
|
|
177
177
|
|
|
178
178
|
#### Viewing Configured Servers
|
|
179
179
|
|
|
@@ -205,12 +205,6 @@ Project-level servers take precedence over global servers with the same name.
|
|
|
205
205
|
```json
|
|
206
206
|
{
|
|
207
207
|
"mcpServers": {
|
|
208
|
-
"playwright": {
|
|
209
|
-
"command": "npx",
|
|
210
|
-
"args": ["@modelcontextprotocol/server-playwright"],
|
|
211
|
-
"description": "Browser automation via Playwright",
|
|
212
|
-
"enabled": true
|
|
213
|
-
},
|
|
214
208
|
"custom-tool": {
|
|
215
209
|
"command": "./scripts/custom-mcp.js",
|
|
216
210
|
"args": ["--option", "value"],
|
|
@@ -241,7 +235,7 @@ When viewing MCP servers with `/mcp`, you can:
|
|
|
241
235
|
|
|
242
236
|
#### Default Setup
|
|
243
237
|
|
|
244
|
-
When you run `/setup`, Supatest
|
|
238
|
+
When you run `/setup`, Supatest checks and installs Agent Browser (`agent-browser`), which provides browser automation for test creation and debugging. Agent Browser is a CLI tool invoked directly by the agent — no MCP configuration is needed for browser automation.
|
|
245
239
|
|
|
246
240
|
#### Example: Adding a Custom MCP Server
|
|
247
241
|
|