MCP Catalogs
Home

filesystem vs ENScan_GO

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

filesystem
by modelcontextprotocol
ENScan_GO
by wgpsec
Stars★ 85,748★ 4,392
30d uses
Score7756
Official
Categories
File SystemDeveloper ToolsProductivity
SecurityWeb ScrapingDeveloper Tools
LanguageTypeScriptGo
Last committhis month2 mo ago

filesystem · Summary

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

ENScan_GO · Summary

ENScan_GO is a Chinese enterprise information gathering tool that supports MCP server functionality.

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

ENScan_GO · Use cases

  • Security researchers gathering Chinese enterprise intelligence for vulnerability assessment
  • Analysts conducting supply chain risk analysis of Chinese companies
  • Compliance teams monitoring corporate structures and subsidiaries

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.

ENScan_GO · Install

Installation

Binary Download

  1. Download precompiled binaries from [GitHub Releases](https://github.com/wgpsec/ENScan_GO/releases)
  2. Extract the archive
  3. Run with ./enscan -v to generate config file

From Source

git clone https://github.com/wgpsec/ENScan_GO.git
cd ENScan_GO
go build -o enscan .
./enscan -v

MCP Configuration

Add to Claude Desktop config.json:

{
  "mcpServers": {
    "enscan": {
      "command": "path/to/enscan",
      "args": ["--mcp"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.