MCP Catalogs
Home

filesystem vs tfmcp

Side-by-side comparison to help you pick between these two MCP servers.

filesystem
by modelcontextprotocol
tfmcp
by nwiizo
Stars★ 85,748★ 364
30d uses
Score7752
Official
Categories
File SystemDeveloper ToolsProductivity
Ops & InfraDeveloper ToolsSecurity
LanguageTypeScriptRust
Last committhis month2 mo ago

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

tfmcp · Summary

tfmcp is a comprehensive Terraform MCP server enabling AI assistants to manage infrastructure with 31 specialized tools.

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

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

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

tfmcp · Install

Installation

From Crates.io

cargo install tfmcp

Using Docker

git clone https://github.com/nwiizo/tfmcp
cd tfmcp
docker build -t tfmcp .
docker run -it tfmcp

Claude 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"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.