From 2d3c292cd88e285d531f3e2b98b64b92590c8ff5 Mon Sep 17 00:00:00 2001 From: Yuta Saito Date: Wed, 14 Jan 2026 14:31:18 +0900 Subject: [PATCH] chore: Clarify MCP OAuth token handling in UI --- docs/my-website/docs/mcp.md | 2 +- .../src/components/mcp_tools/create_mcp_server.tsx | 2 +- .../src/components/mcp_tools/mcp_server_edit.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/my-website/docs/mcp.md b/docs/my-website/docs/mcp.md index d845860ff0..41c1e76253 100644 --- a/docs/my-website/docs/mcp.md +++ b/docs/my-website/docs/mcp.md @@ -502,7 +502,7 @@ Your OpenAPI specification should follow standard OpenAPI/Swagger conventions: LiteLLM v 1.77.6 added support for OAuth 2.0 Client Credentials for MCP servers. -This configuration is currently available on the config.yaml, with UI support coming soon. +You can configure this either in `config.yaml` or directly from the LiteLLM UI (MCP Servers → Authentication → OAuth). ```yaml mcp_servers: diff --git a/ui/litellm-dashboard/src/components/mcp_tools/create_mcp_server.tsx b/ui/litellm-dashboard/src/components/mcp_tools/create_mcp_server.tsx index d72b7c4f67..82932a320e 100644 --- a/ui/litellm-dashboard/src/components/mcp_tools/create_mcp_server.tsx +++ b/ui/litellm-dashboard/src/components/mcp_tools/create_mcp_server.tsx @@ -663,7 +663,7 @@ const CreateMCPServer: React.FC = ({

- Complete the OAuth authorization flow to fetch an access token and store it as the authentication value. + Use OAuth to fetch a fresh access token and temporarily save it in the session as the authentication value.