From 1659d40828f1a13e649a3aa55f4cca6fb7c818f4 Mon Sep 17 00:00:00 2001 From: Abdelrahman Essawy Date: Mon, 1 Jun 2026 03:26:31 +0300 Subject: [PATCH] fix(registry): add required per-package transport to server.json The 2025-09-29 MCP server schema requires a `transport` object on each package (validated locally against the published schema). server.json declared a top-level `transports` array, which the schema ignores, so the registry publish failed: packages[0].transport missing / unsupported type "". Move it to packages[0].transport = { "type": "stdio" } and drop the invalid root array. Completes the registry-publish fix begun in the identifier/ registryType change. --- server.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/server.json b/server.json index 356430d..aed424d 100644 --- a/server.json +++ b/server.json @@ -12,10 +12,10 @@ "registryType": "npm", "registryBaseUrl": "https://registry.npmjs.org", "identifier": "@rendobar/mcp", - "version": "1.0.4" + "version": "1.0.5", + "transport": { + "type": "stdio" + } } - ], - "transports": [ - "stdio" ] }