mcp: migrated serena to run inside a docker

This commit is contained in:
Knee Cola
2025-11-17 11:50:54 +01:00
parent ed304e7ba9
commit 2ac9ca92a4

View File

@@ -1,28 +1,26 @@
{ {
"mcpServers": { "mcpServers": {
"serena": { "serena": {
"command": "uvx", "command": "docker",
"args": [ "args": [
"--from", "run",
"git+https://github.com/oraios/serena", "--rm",
"serena", "-i",
"start-mcp-server", "--network", "host",
"--enable-web-dashboard", "-v", "./:/workspaces/projects",
"false" "ghcr.io/oraios/serena:0.1.4",
] "serena", "start-mcp-server",
"--transport", "stdio",
"--project", "/workspaces/projects",
"--enable-web-dashboard", "false"
],
"autoApprove": {
"commands": ["*"]
}
}, },
"context7": { "context7": {
"type": "http", "type": "http",
"url": "https://mcp.context7.com/mcp" "url": "https://mcp.context7.com/mcp"
},
"git": {
"command": "uvx",
"args": [
"mcp-server-git"
],
"env": {
"MCP_GIT_ALLOW": "/home/knee-cola/web-pro/evidencija-rezija"
}
} }
} }
} }