tda vs everything
Side-by-side comparison to help you pick between these two MCP servers.
tda by irockel | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 542 | ★ 85,748 |
| 30d uses | — | — |
| Score | 53 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsMonitoringAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Java | TypeScript |
| Last commit | this month | this month |
tda · Summary
TDA is a Java thread dump analyzer with MCP server capabilities for AI-powered diagnostics.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
tda · Use cases
- AI-assisted debugging of production Java applications using thread dumps
- Automated analysis of Java performance issues and deadlock detection
- Integration with development workflows for real-time monitoring
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
tda · Install
Installation
- Download the standalone JAR from the [Releases](https://github.com/irockel/tda/releases) page
- Run TDA as MCP server:
java -Djava.awt.headless=true -jar tda.jar --mcpClaude Desktop Integration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"tda": {
"command": "java",
"args": ["-Djava.awt.headless=true", "-jar", "/path/to/tda.jar", "--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-everything