everything vs McpToolsSdkBased
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | McpToolsSdkBased by srogmann | |
|---|---|---|
| Stars | ★ 85,748 | ★ 0 |
| 30d uses | — | — |
| Score | 77 | 27 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | File SystemDeveloper ToolsOther |
| Language | TypeScript | Java |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
McpToolsSdkBased · Summary
Java-based MCP server SDK providing file search, read, and edit tools.
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
McpToolsSdkBased · Use cases
- As a template for building MCP tools in Java environments
- Providing file manipulation capabilities within MCP-enabled applications
- Demonstrating how to adapt existing tools from McpToolPlayground for 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-everythingMcpToolsSdkBased · Install
Installation
This is a Java-based MCP server using Spring Boot. The project appears to be set up as a standard Maven/Gradle project:
- Clone the repository
- Build with Maven:
mvn clean install - Run the application:
mvn spring-boot:run
Integration with Claude Desktop
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"mcp-tools-sdk-based": {
"command": "java",
"args": ["-jar", "path/to/your/built.jar"]
}
}
}