Replies: 2 comments
-
|
We currently do not plan to provide a docker image but it is definitely possible to run the MCP server in a Docker container with Chrome. See Puppeteer Dockerfile as an example https://github.com/puppeteer/puppeteer/tree/main/docker Although we only support the stdio transport so you would need a proxy to expose the MCP to the network. |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Installing {
"$schema": "https://opencode.ai/config.json",
"mcp": {
"chrome-devtools": {
"type": "local",
"command": [
"podman",
"run",
"--rm",
"-i",
"--init",
"docker.io/library/node:lts-alpine",
"npx",
"-y",
"chrome-devtools-mcp@latest",
"--browser-url=http://192.168.0.3:50001"
],
}
}
}
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
👋🏻 G'Day CDT!
Thank you kindly for providing this tool.
In the Requirements and Getting Started documentation it suggests that node needs to be installed locally. Putting aside language wars, etc .. is it possible that this MCP tool can be provided as a Docker image? I'm really really new to MCP's so I apologize if this cannot be technically possible.
Keep up the awesome work! 🎉
EDIT: I'm guessing that the complexity here could be because
I hoping hard doesn't mean impossible
Beta Was this translation helpful? Give feedback.
All reactions