code-to-tree vs everything
Side-by-side comparison to help you pick between these two MCP servers.
code-to-tree by micl2e2 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 83 | ★ 85,748 |
| 30d uses | — | — |
| Score | 43 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | C | TypeScript |
| Last commit | 2 mo ago | this month |
code-to-tree · Summary
A runtime-free MCP server converting source code to AST using tree-sitter with minimal dependencies.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
code-to-tree · Use cases
- Code analysis and refactoring by LLMs
- Cross-language code structure comparison
- Automated documentation generation from code structure
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
code-to-tree · Install
Installation
- Download the pre-built binary from the [GitHub releases page](https://github.com/micl2e2/code-to-tree/releases)
- Configure your MCP client (example for Claude Desktop):
**Windows:** ``json { "mcpServers": { "code-to-tree": { "command": "C:\\path\\to\\code-to-tree.exe" } } } ``
**macOS:** ``json { "mcpServers": { "code-to-tree": { "command": "/path/to/code-to-tree" } } } ``
- Restart your MCP client to apply the configuration
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