MCP Catalogs
Home

mercury-invoicing-mcp vs filesystem

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

mercury-invoicing-mcp
by klodr
filesystem
by modelcontextprotocol
Stars★ 20★ 85,748
30d uses
Score4577
Official
Categories
FinanceDeveloper ToolsProductivity
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis monththis month

mercury-invoicing-mcp · Summary

MCP server providing full access to Mercury Banking APIs with advanced invoicing features.

filesystem · Summary

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

mercury-invoicing-mcp · Use cases

  • Automating recurring invoice creation and management for small businesses
  • Enabling LLM agents to access banking data for financial analysis
  • Creating payment workflows with proper approval controls

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

mercury-invoicing-mcp · Install

Installation

npm install -g mercury-invoicing-mcp

Or with npx:

npx mercury-invoicing-mcp

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "mercury-invoicing": {
      "command": "npx",
      "args": ["-y", "mercury-invoicing-mcp"],
      "env": {
        "MERCURY_API_KEY": "secret-token:mercury_production_xxxxxxxxxxxxxxxx"
      }
    }
  }
}

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.