Self-hosted MCP server: sandboxed browser, desktop, vision, code-edit packs for any agent.
Runs locally over stdio
This server isn't hosted — your MCP client launches it from a package registry. Use one of the commands below, or drop the config into your client (e.g. Claude Desktop).
Run
npx -y @helmdeck/mcp-bridge
MCP client config
{
"mcpServers": {
"helmdeck": {
"command": "npx",
"args": [
"-y",
"@helmdeck/mcp-bridge"
]
}
}
}Run
docker run -i --rm ghcr.io/tosin2013/helmdeck-mcp:0.29.10
MCP client config
{
"mcpServers": {
"helmdeck": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/tosin2013/helmdeck-mcp:0.29.10"
]
}
}
}