everything vs tfmcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | tfmcp by nwiizo | |
|---|---|---|
| Stars | ★ 85,748 | ★ 364 |
| 30d uses | — | — |
| Score | 77 | 52 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Ops & InfraDeveloper ToolsSecurity |
| Language | TypeScript | Rust |
| Last commit | this month | 2 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
tfmcp · Summary
tfmcp is a comprehensive Terraform MCP server enabling AI assistants to manage infrastructure with 31 specialized 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
tfmcp · Use cases
- AI assistant managing Terraform infrastructure through natural language commands
- Infrastructure as Code analysis and refactoring recommendations
- Automated Terraform plan review and risk assessment
- Workspace management across multiple environments
- Terraform module search and integration assistance
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-everythingtfmcp · Install
Installation
From Crates.io
cargo install tfmcpUsing Docker
git clone https://github.com/nwiizo/tfmcp
cd tfmcp
docker build -t tfmcp .
docker run -it tfmcpClaude Desktop Integration
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"tfmcp": {
"command": "/path/to/your/tfmcp",
"args": ["mcp"],
"env": {
"HOME": "/Users/yourusername",
"PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin",
"TERRAFORM_DIR": "/path/to/your/terraform/project"
}
}
}
}