From 021e1da2e17060c80aba235ceaeabf513b602601 Mon Sep 17 00:00:00 2001 From: Wandile <64791173+wandile-gim@users.noreply.github.com> Date: Thu, 27 Mar 2025 20:13:45 +0900 Subject: [PATCH] Update mcp-client-boot-starter-docs.adoc wrong spelling check serverConfiurationName -> serverConfigurationName Signed-off-by: Wandile <64791173+wandile-gim@users.noreply.github.com> --- .../ROOT/pages/api/mcp/mcp-client-boot-starter-docs.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/mcp/mcp-client-boot-starter-docs.adoc b/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/mcp/mcp-client-boot-starter-docs.adoc index 39d2a333c78..b748198efda 100644 --- a/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/mcp/mcp-client-boot-starter-docs.adoc +++ b/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/mcp/mcp-client-boot-starter-docs.adoc @@ -291,14 +291,14 @@ Async:: @Component public class CustomMcpAsyncClientCustomizer implements McpAsyncClientCustomizer { @Override - public void customize(String serverConfiurationName, McpClient.AsyncSpec spec) { + public void customize(String serverConfigurationName, McpClient.AsyncSpec spec) { // Customize the async client configuration spec.requestTimeout(Duration.ofSeconds(30)); } } ---- ====== -The `serverConfiurationName` parameter is the name of the server configuration that the customizer is being applied to and the the MCP Client is created for. +The `serverConfigurationName` parameter is the name of the server configuration that the customizer is being applied to and the the MCP Client is created for. The MCP client auto-configuration automatically detects and applies any customizers found in the application context.