Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 11 additions & 5 deletions docs/toolhive/guides-mcp/playwright.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -141,21 +141,23 @@ metadata:
name: playwright
namespace: toolhive-system
spec:
image: mcr.microsoft.com/playwright/mcp:v0.0.54
image: mcr.microsoft.com/playwright/mcp:v0.0.59
transport: streamable-http
mcpPort: 8931
proxyPort: 8080
args:
- '--port'
- '8931'
- '--host'
- '0.0.0.0'
- '--allowed-hosts'
- '*'
```

:::note[Important]

Don't remove the `--port 8931` or `--allowed-hosts "*"` arguments. They are
required to run the server using Streamable HTTP.
Don't remove the `--port 8931`, `--host 0.0.0.0`, or `--allowed-hosts "*"`
arguments. They are required to run the server using Streamable HTTP.

:::

Expand All @@ -175,13 +177,15 @@ metadata:
name: playwright
namespace: toolhive-system
spec:
image: mcr.microsoft.com/playwright/mcp:v0.0.54
image: mcr.microsoft.com/playwright/mcp:v0.0.59
transport: streamable-http
mcpPort: 8931
proxyPort: 8080
args:
- '--port'
- '8931'
- '--host'
- '0.0.0.0'
- '--allowed-hosts'
- '*'
- '--allowed-origins'
Expand All @@ -198,13 +202,15 @@ metadata:
name: playwright
namespace: toolhive-system
spec:
image: mcr.microsoft.com/playwright/mcp:v0.0.54
image: mcr.microsoft.com/playwright/mcp:v0.0.59
transport: streamable-http
mcpPort: 8931
proxyPort: 8080
args:
- '--port'
- '8931'
- '--host'
- '0.0.0.0'
- '--allowed-hosts'
- '*'
- '--output-dir'
Expand Down
Loading