Skip to content

Commit 88ee4be

Browse files
committed
refactor: update Spring AI artifact IDs to new naming convention
Update Spring AI dependency artifact IDs in documentation to follow the new naming convention: - spring-ai-mcp-client-spring-boot-starter → spring-ai-starter-mcp-client - spring-ai-anthropic-spring-boot-starter → spring-ai-starter-model-anthropic - spring-ai-mcp-server-spring-boot-starter → spring-ai-starter-mcp-server This is to align the quckstart documentation with the changes to be released with Spring-AI 1.0.0-M7 Signed-off-by: Christian Tzolov <[email protected]>
1 parent 71bf4da commit 88ee4be

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

quickstart/client.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -859,11 +859,11 @@ The application integrates Spring AI with the Brave Search MCP server through se
859859
```xml
860860
<dependency>
861861
<groupId>org.springframework.ai</groupId>
862-
<artifactId>spring-ai-mcp-client-spring-boot-starter</artifactId>
862+
<artifactId>spring-ai-starter-mcp-client</artifactId>
863863
</dependency>
864864
<dependency>
865865
<groupId>org.springframework.ai</groupId>
866-
<artifactId>spring-ai-anthropic-spring-boot-starter</artifactId>
866+
<artifactId>spring-ai-starter-model-anthropic</artifactId>
867867
</dependency>
868868
```
869869

@@ -885,7 +885,7 @@ spring:
885885
api-key: ${ANTHROPIC_API_KEY}
886886
```
887887
888-
This activates the `spring-ai-mcp-client-spring-boot-starter` to create one or more `McpClient`s based on the provided server configuration.
888+
This activates the `spring-ai-starter-mcp-client` to create one or more `McpClient`s based on the provided server configuration.
889889

890890
3. MCP Server Configuration (`mcp-servers-config.json`):
891891
```json

quickstart/server.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -775,7 +775,7 @@ You will need to add the following dependencies:
775775
<dependencies>
776776
<dependency>
777777
<groupId>org.springframework.ai</groupId>
778-
<artifactId>spring-ai-mcp-server-spring-boot-starter</artifactId>
778+
<artifactId>spring-ai-starter-mcp-server</artifactId>
779779
</dependency>
780780

781781
<dependency>
@@ -788,7 +788,7 @@ You will need to add the following dependencies:
788788
<Tab title="Gradle">
789789
```groovy
790790
dependencies {
791-
implementation platform("org.springframework.ai:spring-ai-mcp-server-spring-boot-starter")
791+
implementation platform("org.springframework.ai:spring-ai-starter-mcp-server")
792792
implementation platform("org.springframework:spring-web")
793793
}
794794
```
@@ -1011,12 +1011,12 @@ mcpClient.closeGracefully();
10111011

10121012
### Use MCP Client Boot Starter
10131013

1014-
Create a new boot starter applicaiton using the `spring-ai-mcp-client-spring-boot-starter` dependency:
1014+
Create a new boot starter applicaiton using the `spring-ai-starter-mcp-client` dependency:
10151015

10161016
```xml
10171017
<dependency>
10181018
<groupId>org.springframework.ai</groupId>
1019-
<artifactId>spring-ai-mcp-client-spring-boot-starter</artifactId>
1019+
<artifactId>spring-ai-starter-mcp-client</artifactId>
10201020
</dependency>
10211021
```
10221022

0 commit comments

Comments
 (0)