everything vs mcp-java-sdk-examples
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mcp-java-sdk-examples by thought2code | |
|---|---|---|
| Stars | ★ 85,748 | ★ 32 |
| 30d uses | — | — |
| Score | 77 | 38 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsFile SystemOther |
| Language | TypeScript | Java |
| Last commit | this month | 7 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-java-sdk-examples · Summary
A collection of MCP server examples demonstrating different Java SDK implementations.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
mcp-java-sdk-examples · Use cases
- Developers learning how to implement MCP servers using Java SDKs
- Organizations standardizing LLM integrations with Java applications
- Testing and prototyping file system operations through MCP
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingmcp-java-sdk-examples · Install
Installation
This is a collection of examples, not a server itself. Each example has its own setup requirements. For the filesystem example:
- Clone the repository
- Navigate to the example directory:
cd mcp-server-filesystem - Build the project:
mvn package - Run the server:
java -jar target/mcp-server-filesystem-*.jar
Claude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"mcp-java-sdk-examples": {
"command": "java",
"args": ["-jar", "/path/to/mcp-server-filesystem/target/mcp-server-filesystem-*.jar"]
}
}
}