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
Copy file name to clipboardExpand all lines: README.md
+25Lines changed: 25 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,31 @@ The ORAS MCP Server can be configured to be run using the [vscode agent mode](ht
6
6
7
7
Since this MCP Server requires a local ORAS CLI, please make sure you have installed the [oras](https://github.com/oras-project/oras) (version >= `v1.3.0-beta.1`).
8
8
9
+
### Setup with Docker
10
+
11
+
It is easier to use docker to run the ORAS MCP Server.
12
+
13
+
#### Setup for VS Code
14
+
15
+
Add the following code to `.vscode/mcp.json`:
16
+
17
+
```json
18
+
{
19
+
"servers": {
20
+
"oras-mcp-server": {
21
+
"type": "stdio",
22
+
"command": "docker",
23
+
"args": [
24
+
"run",
25
+
"--rm",
26
+
"-i",
27
+
"ghcr.io/shizhmsft/oras-mcp:main",
28
+
]
29
+
}
30
+
}
31
+
}
32
+
```
33
+
9
34
## Example Chats
10
35
11
36
Q: What platform does the image ghcr.io/oras-project/oras support?
0 commit comments