MCP Catalogs
Home

funpay-mcp vs filesystem

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

funpay-mcp
by DKeken
filesystem
by modelcontextprotocol
Stars★ 0★ 85,748
30d uses
Score3677
Official
Categories
E-commerceDeveloper ToolsWeb Scraping
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis monththis month

funpay-mcp · Summary

MCP server for FunPay.com with profile management, lot operations, and batch cloning.

filesystem · Summary

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

funpay-mcp · Use cases

  • Batch clone listings across multiple FunPay subcategories with customized fields
  • Manage multiple FunPay seller profiles securely through OS keychain storage
  • Automate lot creation and updates for e-commerce operations on FunPay

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

funpay-mcp · Install

git clone https://github.com/DKeken/funpay-mcp.git
cd funpay-mcp
bun install

Register in Claude Code by editing ~/.claude.json:

{
  "mcpServers": {
    "funpay": {
      "type": "stdio",
      "command": "bun",
      "args": ["run", "/absolute/path/to/funpay-mcp/index.ts"],
      "env": {}
    }
  }
}

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.