MCP Catalogs
Home

gahmen-mcp vs filesystem

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

gahmen-mcp
by aniruddha-adhikary
filesystem
by modelcontextprotocol
Stars★ 2★ 85,748
30d uses
Score3277
Official
Categories
DatabasegovernmentDeveloper Tools
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last commit11 mo agothis month

gahmen-mcp · Summary

MCP server for Singapore government data APIs with search, metadata, and download capabilities.

filesystem · Summary

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

gahmen-mcp · Use cases

  • Data journalists analyzing Singapore public datasets for reporting
  • Researchers accessing filtered government statistics for academic work
  • Developers building applications on top of Singapore government open data

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

gahmen-mcp · Install

npm install

For Claude Desktop, add this to your config.json:

{
  "mcpServers": {
    "gahmen": {
      "command": "node",
      "args": ["path/to/gahmen-mcp/dist/index.js"]
    }
  }
}

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.

Comparison generated from public README + GitHub signals. Last updated automatically.