MCP Catalogs
Home

filesystem vs gumroad-mcp

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

filesystem
by modelcontextprotocol
gumroad-mcp
by rmarescu
Stars★ 85,748★ 22
30d uses
Score7737
Official
Categories
File SystemDeveloper ToolsProductivity
E-commerceProductivityDeveloper Tools
LanguageTypeScriptTypeScript
Last committhis month13 mo ago

filesystem · Summary

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

gumroad-mcp · Summary

An MCP server for Gumroad API, enabling AI assistants to manage products, sales, and offer codes.

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

gumroad-mcp · Use cases

  • Digital creators can query monthly sales trends and compare performance across time periods
  • Automate product management tasks like enabling/disabling products through AI commands
  • Manage offer codes by creating, updating, or deleting promotional codes for products

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.

gumroad-mcp · Install

Installation

Quickstart

npx gumroad-mcp@latest init

Manual Configuration

For Claude Desktop, add this to your configuration:

{
  "mcpServers": {
    "gumroad": {
      "command": "npx",
      "args": ["-y", "gumroad-mcp@latest"],
      "env": {
        "GUMROAD_ACCESS_TOKEN": "<YOUR_TOKEN>"
      }
    }
  }
}

For self-hosted Gumroad instances, also add GUMROAD_BASE_URL environment variable.

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