From 1ba294a108afbc26ff4f25b56597eda3ff5bf243 Mon Sep 17 00:00:00 2001 From: Toshiaki Maki Date: Sat, 19 Apr 2025 04:41:03 +0900 Subject: [PATCH] Fix wrong client-id in README Signed-off-by: Toshiaki Maki --- .../weather/starter-webmvc-oauth2-server/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/model-context-protocol/weather/starter-webmvc-oauth2-server/README.md b/model-context-protocol/weather/starter-webmvc-oauth2-server/README.md index e8eed10..7779beb 100644 --- a/model-context-protocol/weather/starter-webmvc-oauth2-server/README.md +++ b/model-context-protocol/weather/starter-webmvc-oauth2-server/README.md @@ -16,12 +16,12 @@ Obtain a token by calling the `/oauth2/token` endpoint: ```shell curl -XPOST "http://localhost:8080/oauth2/token" \ --data grant_type=client_credentials \ - --user "oidc-client:secret" + --user "mcp-client:secret" # And copy-paste the access token # Or use JQ: curl -XPOST "http://localhost:8080/oauth2/token" \ --data grant_type=client_credentials \ - --user "oidc-client:secret" | jq -r ".access_token" + --user "mcp-client:secret" | jq -r ".access_token" ``` Store that token, and then boot up the MCP inspector: