align workflow CLI commands with MCP parity (#4792)

This commit is contained in:
Marc Kelechava
2026-02-18 11:34:12 -08:00
committed by GitHub
parent 2f6850ce20
commit 46a7ec1d26
12 changed files with 1609 additions and 151 deletions

View File

@@ -68,6 +68,30 @@ Add this to your MCP client's configuration file:
Replace `/usr/bin/python3` with the output of `which python3` on your machine. For local mode, set `SKYVERN_BASE_URL` to `http://localhost:8000` and find your API key in the `.env` file after running `skyvern init`.
### Option C: Remote MCP over HTTPS (streamable HTTP)
Use this when your team provides a hosted MCP endpoint (for example: `https://mcp.skyvern.com/mcp`).
In remote HTTP mode:
- Clients must send `x-api-key` on every request.
- Use `skyvern_session_create` first, then pass `session_id` explicitly on subsequent browser tool calls.
If your MCP client supports native remote HTTP transport, configure it directly:
```json
{
"mcpServers": {
"SkyvernRemote": {
"type": "streamable-http",
"url": "https://mcp.skyvern.com/mcp",
"headers": {
"x-api-key": "YOUR_SKYVERN_API_KEY"
}
}
}
}
```
<Accordion title="Config file locations by client">
| Client | Path |