-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmcp-docker-examples.json
More file actions
36 lines (36 loc) · 1.2 KB
/
mcp-docker-examples.json
File metadata and controls
36 lines (36 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"mcpServers": {
"vendure-mcp-local-build": {
"description": "Runs the MCP server from a locally built Docker image. Use for testing before publishing.",
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--env",
"PROJECT_PATH=/workspace",
"--volume",
"/Users/housien/Documents/GitHub/vendure-testshops/mcptestenew:/workspace",
"vendure-mcp:latest",
"--projectPath",
"/workspace"
]
},
"vendure-mcp-published": {
"description": "Runs the MCP server from a published image on GitHub Container Registry.",
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--env",
"PROJECT_PATH=/workspace",
"--volume",
"/Users/housien/Documents/GitHub/vendure-testshops/mcptestenew:/workspace",
"ghcr.io/YOUR_GITHUB_USERNAME/YOUR_REPO_NAME:latest",
"--projectPath",
"/workspace"
]
}
}
}