MCP Catalogs
Home

everything vs gumroad-mcp

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

everything
by modelcontextprotocol
gumroad-mcp
by rmarescu
Stars★ 85,748★ 22
30d uses
Score7737
Official
Categories
Developer ToolsAI / LLM ToolsOther
E-commerceProductivityDeveloper Tools
LanguageTypeScriptTypeScript
Last committhis month13 mo ago

everything · Summary

Official MCP test server exercising all protocol features for client builders.

gumroad-mcp · Summary

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

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

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

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything

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.