Skip to content

Commit 2bbe13d

Browse files
committed
Update mcp-publisher CLI v1.1.0 → v1.5.0 to fix MCP Registry publish failure
The old publisher (v1.1.0, Sept 2025) didn't recognize the 2025-12-11 schema and rejected it as deprecated. Also aligned the validation step schema URL.
1 parent 1ab4749 commit 2bbe13d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ jobs:
113113
import urllib.request
114114
from jsonschema import ValidationError, validate
115115
116-
schema_url = "https://static.modelcontextprotocol.io/schemas/2025-09-29/server.schema.json"
116+
schema_url = "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json"
117117
118118
try:
119119
with urllib.request.urlopen(schema_url, timeout=30) as response:
@@ -213,7 +213,7 @@ jobs:
213213
- name: Install MCP Publisher CLI
214214
if: steps.version-check.outputs.version_changed == 'true' && github.ref == 'refs/heads/main'
215215
run: |
216-
curl -L "https://github.com/modelcontextprotocol/registry/releases/download/v1.1.0/mcp-publisher_1.1.0_$(uname -s | tr '[:upper:]' '[:lower:]')_$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/').tar.gz" | tar xz mcp-publisher
216+
curl -L "https://github.com/modelcontextprotocol/registry/releases/download/v1.5.0/mcp-publisher_1.5.0_$(uname -s | tr '[:upper:]' '[:lower:]')_$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/').tar.gz" | tar xz mcp-publisher
217217
chmod +x mcp-publisher
218218
219219
- name: Login to MCP Registry (GitHub OIDC)

0 commit comments

Comments
 (0)