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
Built using pure [MCP Java SDK](https://github.com/modelcontextprotocol/java-sdk) – No Spring Framework Required.
4
+
5
+
For another easier way to develop your own MCP server, you can explore this [Annotation-driven MCP Java SDK](https://github.com/codeboyzhou/mcp-declarative-java-sdk).
6
+
7
+
## Requirements
8
+
9
+
- Java 17 or later (Restricted by MCP Java SDK)
10
+
11
+
## What is MCP?
12
+
13
+
The [Model Context Protocol (MCP)](https://modelcontextprotocol.io) lets you build servers that expose data and functionality to LLM applications in a secure, standardized way. Think of it like a web API, but specifically designed for LLM interactions. MCP servers can:
14
+
15
+
- Expose data through **Resources** (think of these sort of like GET endpoints; they are used to load information into the LLM's context)
16
+
- Provide functionality through **Tools** (sort of like POST endpoints; they are used to execute code or otherwise produce a side effect)
17
+
- Define interaction patterns through **Prompts** (reusable templates for LLM interactions)
18
+
- And more!
19
+
20
+
You can start exploring everything about **MCP** from [here](https://modelcontextprotocol.io).
21
+
22
+
## Examples
23
+
24
+
If you are looking for servers implemented with Typescript MCP SDK or Python MCP SDK, see [here](https://github.com/modelcontextprotocol/servers).
25
+
26
+
These servers aim to demonstrate MCP features and the MCP Java SDK.
27
+
28
+
-[Filesystem](https://github.com/codeboyzhou/mcp-java-sdk-examples/blob/main/mcp-server-filesystem/README.md) - Secure file operations with configurable access controls
0 commit comments