Skip to content

Commit e72caa0

Browse files
authored
Update the publishing docs to refer to the v1.0.0 release (#380)
<!-- Provide a brief summary of your changes --> ## Motivation and Context <!-- Why is this change needed? What problem does it solve? --> The following PR updates the publishing docs to refer to the mcp-publisher release assets from v1.0.0. ## How Has This Been Tested? <!-- Have you tested this in a real application? Which scenarios were tested? --> Locally ## Breaking Changes <!-- Will users need to update their code or configurations? --> No ## Types of changes <!-- What types of changes does your code introduce? Put an `x` in all the boxes that apply: --> - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to change) - [x] Documentation update ## Checklist <!-- Go over all the following points, and put an `x` in all the boxes that apply. --> - [ ] I have read the [MCP Documentation](https://modelcontextprotocol.io) - [ ] My code follows the repository's style guidelines - [ ] New and existing tests pass locally - [ ] I have added appropriate error handling - [ ] I have added or updated documentation as needed ## Additional context <!-- Add any other context, implementation notes, or design decisions --> Signed-off-by: Radoslav Dimitrov <[email protected]>
1 parent f975e68 commit e72caa0

File tree

1 file changed

+38
-5
lines changed

1 file changed

+38
-5
lines changed

docs/guides/publishing/publish-server.md

Lines changed: 38 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,51 @@ By the end of this tutorial, you'll have:
1717

1818
## Step 1: Install the Publisher CLI
1919

20-
<!-- TODO: update once #358 solved -->
20+
You can either download a pre-built binary or build from source.
2121

22-
Download and build the MCP publisher tool:
22+
### Option A: Download Pre-built Binary (Recommended)
23+
24+
Download the latest release for your platform:
25+
26+
```bash
27+
# macOS Apple Silicon (M1/M2/M3)
28+
curl -L https://github.com/modelcontextprotocol/registry/releases/download/v1.0.0/mcp-publisher_1.0.0_darwin_arm64.tar.gz | tar xz
29+
30+
# macOS Intel
31+
curl -L https://github.com/modelcontextprotocol/registry/releases/download/v1.0.0/mcp-publisher_1.0.0_darwin_amd64.tar.gz | tar xz
32+
33+
# Linux x86_64
34+
curl -L https://github.com/modelcontextprotocol/registry/releases/download/v1.0.0/mcp-publisher_1.0.0_linux_amd64.tar.gz | tar xz
35+
36+
# Linux ARM64
37+
curl -L https://github.com/modelcontextprotocol/registry/releases/download/v1.0.0/mcp-publisher_1.0.0_linux_arm64.tar.gz | tar xz
38+
39+
# Windows x86_64 (PowerShell)
40+
Invoke-WebRequest -Uri "https://github.com/modelcontextprotocol/registry/releases/download/v1.0.0/mcp-publisher_1.0.0_windows_amd64.tar.gz" -OutFile "mcp-publisher.tar.gz"
41+
tar xf mcp-publisher.tar.gz
42+
43+
# Windows ARM64 (PowerShell)
44+
Invoke-WebRequest -Uri "https://github.com/modelcontextprotocol/registry/releases/download/v1.0.0/mcp-publisher_1.0.0_windows_arm64.tar.gz" -OutFile "mcp-publisher.tar.gz"
45+
tar xf mcp-publisher.tar.gz
46+
47+
# Add to PATH (macOS/Linux)
48+
chmod +x mcp-publisher && sudo mv mcp-publisher /usr/local/bin/
49+
50+
# Add to PATH (Windows): Move mcp-publisher.exe to a directory in your PATH
51+
```
52+
53+
### Option B: Build from Source
54+
55+
If you prefer to build from source (requires Go 1.24+):
2356

2457
```bash
25-
# Clone the registry repository (requires Go 1.24+)
58+
# Clone the registry repository
2659
git clone https://github.com/modelcontextprotocol/registry
2760
cd registry
2861
make publisher
2962

30-
# The binary will be at cmd/publisher/bin/mcp-publisher
31-
export PATH=$PATH:$(pwd)/cmd/publisher/bin
63+
# The binary will be at bin/mcp-publisher
64+
export PATH=$PATH:$(pwd)/bin
3265
```
3366

3467
## Step 2: Initialize Your server.json

0 commit comments

Comments
 (0)