From 06da1a4c1ccfacb605854123c014f902ce37a525 Mon Sep 17 00:00:00 2001 From: Tanish Desai Date: Thu, 11 Dec 2025 12:50:11 +0530 Subject: [PATCH] fix: correct redirect URI in client-metadata.json Update redirect_uris entry to the intended callback URL --- client-metadata.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client-metadata.json b/client-metadata.json index e1b78b9f..86d03753 100644 --- a/client-metadata.json +++ b/client-metadata.json @@ -1,6 +1,6 @@ { "client_id": "https://raw.githubusercontent.com/modelcontextprotocol/rust-sdk/refs/heads/main/client-metadata.json", - "redirect_uris": ["http://localhost:4000/callback"], + "redirect_uris": ["http://127.0.0.1:8080/callback"], "grant_types": ["authorization_code"], "response_types": ["code"], "token_endpoint_auth_method": "none"