You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Run the server using npx. You can customize the port with the `MERMAID_PORT` environment variable. For example: `MERMAID_PORT=8080 npx -y @hustcc/mcp-mermaid`.",
43
+
"recommended": true,
44
+
"env": {
45
+
"MERMAID_PORT": "The port number for the server to listen on. Defaults to 7001."
46
+
}
47
+
},
48
+
"docker": {
49
+
"type": "docker",
50
+
"command": "docker",
51
+
"args": [
52
+
"run",
53
+
"-p",
54
+
"7001:7001",
55
+
"hustcc/mcp-mermaid:latest"
56
+
],
57
+
"description": "Run the server using Docker. You can customize the port with the `MERMAID_PORT` environment variable and map it accordingly. For example: `docker run -p 8080:8080 -e MERMAID_PORT=8080 hustcc/mcp-mermaid:latest`.",
58
+
"env": {
59
+
"MERMAID_PORT": "The port number for the server to listen on inside the container. Defaults to 7001."
0 commit comments