You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+31-32Lines changed: 31 additions & 32 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,9 +7,9 @@ The MCP Annotations project provides annotation-based method handling for [Model
7
7
8
8
## Table of Contents
9
9
-[Overview](#overview)
10
+
-[Installation](#installation)
10
11
-[Key Components](#key-components)
11
12
-[Usage Examples](#usage-examples)
12
-
-[Installation](#installation)
13
13
-[Features](#features)
14
14
-[Requirements](#requirements)
15
15
-[Building from Source](#building-from-source)
@@ -19,7 +19,7 @@ The MCP Annotations project provides annotation-based method handling for [Model
19
19
20
20
This project consists of two main modules:
21
21
22
-
1.**mcp-annotations** - Core annotations and method handling for MCP operations
22
+
1.**mcp-annotations** - Core annotations and method handling for MCP operations. Depends only on MCP Java SDK.
23
23
2.**spring-ai-mcp-annotations** - Spring AI integration for MCP annotations
24
24
25
25
## Overview
@@ -28,7 +28,35 @@ The MCP Annotations project enables developers to easily create and register met
28
28
29
29
This library builds on top of the [MCP Java SDK](https://github.com/modelcontextprotocol/sdk-java) to provide a higher-level, annotation-based programming model for implementing MCP servers and clients.
30
30
31
-
### Dependencies
31
+
## Installation
32
+
33
+
### Core Module
34
+
35
+
To use the MCP Annotations core module in your project, add the following dependency to your Maven POM file:
36
+
37
+
```xml
38
+
<dependency>
39
+
<groupId>com.logaritex.mcp</groupId>
40
+
<artifactId>mcp-annotations</artifactId>
41
+
<version>0.1.0</version>
42
+
</dependency>
43
+
```
44
+
45
+
### Spring Integration Module
46
+
47
+
To use the Spring integration module, add the following dependency:
0 commit comments