The whole hunk
from line 658, old and new numbered
/
lines
from line 658
658658 </Tab>
659659
660660 <Tab title="Java">
661 The helpers live in the separate `anthropic-java-mcp` artifact, which requires Java 17 or later (the core SDK supports Java 8):
661 The helpers live in the separate `anthropic-java-mcp` artifact, which requires Java 17 or later (the base SDK supports Java 8). Add it alongside the base `anthropic-java` dependency:
662662
663663 <Tabs>
664664 <Tab title="Gradle">
665665 ```kotlin
666 implementation("com.anthropic:anthropic-java-mcp:2.60.0")
666 implementation("com.anthropic:anthropic-java:2.63.0")
667 implementation("com.anthropic:anthropic-java-mcp:2.63.0")
667668 ```
668669 </Tab>
669670
from line 672
671672 ```xml
672673 <dependency>
673674 <groupId>com.anthropic</groupId>
675 <artifactId>anthropic-java</artifactId>
676 <version>2.63.0</version>
677 </dependency>
678 <dependency>
679 <groupId>com.anthropic</groupId>
674680 <artifactId>anthropic-java-mcp</artifactId>
675 <version>2.60.0</version>
681 <version>2.63.0</version>
676682 </dependency>
677683 ```
678684 </Tab>