Skip to content

Commit 08c143a

Browse files
committed
Update README with instructions for using the mcp server docker container
1 parent 082199b commit 08c143a

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

README.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,33 @@ Built using the [mcp-go](https://github.com/mark3labs/mcp-go) framework for robu
1919

2020
## Installation
2121

22+
### Using pre-existing artifacts for local agents
23+
24+
Steps:
25+
1. Login using `up`
26+
```
27+
up login
28+
```
29+
2. Start the marketplace-mcp-server making sure to reference your `up` config
30+
1. Note the location for your `up` config is generally located under $HOME/.up.
31+
2. The below command will mount your up config into the docker container running the mcp server so that it can reuse your identity when interacting with the Upbound Marketplace.
32+
```
33+
docker run --name mcp-marketplace --rm -i -d -p 8765:8765 -v {{REPLACE WITH THE DIRECTORY FOR up}}/.up:/mcp/.up:ro xpkg.upbound.io/upbound/marketplace-mcp-server-http:v0.1.0
34+
```
35+
36+
3. Update the mcpServers block specifying the location of the marketplace mcp-server
37+
```json
38+
{
39+
"mcpServers": {
40+
"marketplace": {
41+
"httpUrl": "http://localhost:8765/mcp"
42+
}
43+
}
44+
}
45+
```
46+
47+
Start the marketplace-mcp-server-http
48+
2249
### Using Docker (Recommended)
2350

2451
Build the Docker image locally:

0 commit comments

Comments
 (0)