everything vs mcp-server-tree-sitter
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mcp-server-tree-sitter by wrale | |
|---|---|---|
| Stars | ★ 85,748 | ★ 303 |
| 30d uses | — | — |
| Score | 77 | 50 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 1 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-server-tree-sitter · Summary
MCP server providing code analysis capabilities using Tree-sitter for multiple programming languages.
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-server-tree-sitter · Use cases
- AI-assisted code analysis and refactoring in development environments
- Codebase exploration and documentation generation for large projects
- Dependency analysis and impact assessment during code changes
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-server-tree-sitter · Install
Installation
Basic Installation
pip install mcp-server-tree-sitterClaude Desktop Configuration
Using MCP CLI:
mcp install mcp_server_tree_sitter.server:mcp --name "tree_sitter"Manual Configuration:
{
"mcpServers": {
"tree_sitter": {
"command": "python",
"args": [
"-m",
"mcp_server_tree_sitter.server"
]
}
}
}