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 | — | — |
| Score | 77 | 37 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | E-commerceProductivityDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 13 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 initManual 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.