From 3d705ff7532d0701b7998ec115bcc9c5648aeab1 Mon Sep 17 00:00:00 2001 From: Rohan Sehgal Date: Tue, 7 Jul 2026 11:17:39 -0700 Subject: [PATCH] Fix Claude MCP setup command argument order --header is variadic, so name/URL positionals placed after it are consumed as header values and the command fails with "missing required argument 'name'". Move the positionals first. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01CwfPb42UxunMFkMFLT2Kvr --- model-context-protocol/developer-portal.mdx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/model-context-protocol/developer-portal.mdx b/model-context-protocol/developer-portal.mdx index f2d6686..962f6f2 100644 --- a/model-context-protocol/developer-portal.mdx +++ b/model-context-protocol/developer-portal.mdx @@ -33,12 +33,11 @@ Replace `api_...` with the API key you copied from the Developer Portal. ```bash - claude mcp add \ + claude mcp add world-developer-portal \ + https://developer.world.org/api/mcp \ --transport http \ --scope project \ - --header "Authorization: Bearer api_..." \ - world-developer-portal \ - https://developer.world.org/api/mcp + --header "Authorization: Bearer api_..." ```