mcp-annotations
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.springaicommunity</groupId> <artifactId>mcp-annotations</artifactId> <version>0.3.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>org.springaicommunity</groupId> <artifactId>mcp-annotations</artifactId> <version>0.3.1</version> <name>MCP Java SDK - Annotations</name> <description>This module enables developers to easily create and register methods for handling MCP operations using simple annotations</description> <url>https://github.com/spring-ai-community/mcp-annotations</url> <organization> <name>Spring AI Communnity</name> <url>https://github.com/spring-ai-community</url> </organization> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <developers> <developer> <name>Christian Tzolov</name> </developer> </developers> <scm> <connection>git://github.com/spring-ai-community/mcp-annotations.git</connection> <developerConnection>git@github.com/spring-ai-community/mcp-annotations.git</developerConnection> <url>https://github.com/spring-ai-community/mcp-annotations</url> </scm> <dependencies> <dependency> <groupId>io.modelcontextprotocol.sdk</groupId> <artifactId>mcp</artifactId> <version>0.12.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.github.victools</groupId> <artifactId>jsonschema-module-swagger-2</artifactId> <version>4.38.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.github.victools</groupId> <artifactId>jsonschema-generator</artifactId> <version>4.38.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.github.victools</groupId> <artifactId>jsonschema-module-jackson</artifactId> <version>4.38.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.swagger.core.v3</groupId> <artifactId>swagger-annotations-jakarta</artifactId> <version>2.2.36</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.19.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jsr310</artifactId> <version>2.19.2</version> <scope>compile</scope> </dependency> </dependencies> </project>