Sweep 22 Sep 2026 · 17:19Z Build v2.1.280 501 read Stable v2.1.267 Latest v2.1.280 Next v2.1.280 Feeds RSS JSON llms.txt Unofficial
One change · api

mcp-connector changed

agents-and-tools/mcp-connector

Nearest release: v2.1.275, published an hour before this site recorded the change. Shown because the two are within 24 hours of each other. Nothing here says the release caused the edit.

Recorded here
Lines+9added
Lines−3removed
From line 658 where the diff opens
First seen 14 Aug 2026 this site's first read of the page
Recorded edits11to this page, all time

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>