Introduction In part 2 , we explained how to deploy and run our conference search application on the Amazon Bedrock AgentCore Runtime as the MCP server. In this article, we'll develop the (MCP-) client, capable of talking to our application running on AgentCore Runtime. Develop local MCP client for Conference application You can find the source code of the MCP client in my spring-ai-1.1-conference-app-agent-local repository. Let's go step-by-step through it. First, in pom.xml , we include, among others, those dependencies: spring-ai-bom - to include the general Spring AI functionality. spring-boot-starter-web - as we develop the MCP client as a web application. spring-ai-starter-model-bedrock-converse -as we use foundational models on Amazon Bedrock. spring-ai-starter-mcp-client-webflux - to develop an asynchronous Spring AI MCP Client . We can use spring-ai-starter-mcp-client to develop a synchronous one. SpringAIConferenceLocalMCPClient class is the main entry point to our application.…