MCP Catalogs
Home

filesystem vs formanator

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

filesystem
by modelcontextprotocol
formanator
by timrogers
Stars★ 85,748★ 84
30d uses
Score7746
Official
Categories
File SystemDeveloper ToolsProductivity
FinanceProductivityAI / LLM Tools
LanguageTypeScriptRust
Last committhis monththis month

filesystem · Summary

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

formanator · Summary

Command-line tool and MCP server for submitting and managing Forma benefit claims with receipt analysis.

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

formanator · Use cases

  • Automatically submit expense receipts for Forma benefits in bulk
  • Integrate Forma claim management into AI assistants via MCP
  • Automatically categorize and process receipt images using LLM analysis

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.

formanator · Install

Installation

macOS or Linux via Homebrew
brew tap timrogers/tap && brew install formanator
macOS, Linux, or Windows via Cargo
# Install Rust if not already installed
# https://www.rust-lang.org/tools/install
cargo install formanator
Via direct binary download
  1. Download the [latest release](https://github.com/timrogers/formanator/releases/latest)
  2. Add the binary to your PATH

Claude Desktop Configuration

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