Gumroad MCP Server

Gumroad MCP Server

Remote serverstreamable-httpGo

What is the Gumroad MCP MCP server?

Gumroad MCP Server. The gumroad mcp mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 12 defined tools rather than through you.

What it actually does

Your browser does not support the video tag.

The Model Context Protocol (MCP) allows AI assistants to interact with external tools and services.

Adding it to your client

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

Its toolset

Everything the assistant can do here goes through one of these:

  • gumroad_get_products — Get all products
  • gumroad_get_product — Get a single product by ID
  • gumroad_disable_product — Disable a product
  • gumroad_enable_product — Enable a product
  • gumroad_get_sales — Get sales data
  • gumroad_get_offer_codes — Get all offer codes for a product
  • gumroad_get_offer_code — Get a single offer code
  • gumroad_create_offer_code — Create a new offer code
  • gumroad_update_offer_code — Update an existing offer code
  • gumroad_delete_offer_code — Delete an offer code
  • gumroad_get_user — Get authenticated user data
  • Prerequisites — To verify you have Node installed, open the command line on your computer

Configuration

You will need 3 environment variables: GUMROAD_ACCESS_TOKEN, GUMROAD_BASE_URL, YOUR_TOKEN. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

  • Node.js 18 or later - A Gumroad account with API access - An MCP-compatible client (like Claude Desktop) To verify you have Node installed, open the command line on your computer. - On macOS, open the Terminal from your Applications folder - On Windows, press Windows + R, type "cmd", and press Enter Once in the command line, verify you have Node installed by entering in

Caveats

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 12 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Gumroad MCP.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the gumroad mcp mcp server does with a few real requests.

When to reach for it

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Gumroad MCP's toolset — gumroad_get_products, gumroad_get_product, gumroad_disable_product and 9 more — is a fair guide to whether it matches your workflow. It is maintained by rmarescu; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Gumroad MCP's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Available tools

ToolWhat it does
gumroad_get_productsGet all products
gumroad_get_productGet a single product by ID
gumroad_disable_productDisable a product
gumroad_enable_productEnable a product
gumroad_get_salesGet sales data
gumroad_get_offer_codesGet all offer codes for a product
gumroad_get_offer_codeGet a single offer code
gumroad_create_offer_codeCreate a new offer code
gumroad_update_offer_codeUpdate an existing offer code
gumroad_delete_offer_codeDelete an offer code
gumroad_get_userGet authenticated user data
PrerequisitesTo verify you have Node installed, open the command line on your computer.

How to install the Gumroad MCP MCP server

{
  "mcpServers": {
    "gumroad": {
      "command": "npx",
      "args": ["-y", "gumroad-mcp"],
      "env": {
        "GUMROAD_ACCESS_TOKEN": "your-value",
        "GUMROAD_BASE_URL": "your-value",
        "YOUR_TOKEN": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

  • Node.js 18 or later - A Gumroad account with API access - An MCP-compatible client (like Claude Desktop) To verify you have Node installed, open the command line on your computer. - On macOS, open the Terminal from your Applications folder - On Windows, press Windows + R, type "cmd", and press Enter Once in the command line, verify you have Node installed by entering in
VariableDescriptionRequired
GUMROAD_ACCESS_TOKENCredential the server authenticates with.Yes
GUMROAD_BASE_URLEndpoint or connection string the server talks to.Yes
YOUR_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use Gumroad MCP to gumroad get products.
  • Use Gumroad MCP to gumroad get product.
  • Use Gumroad MCP to gumroad disable product.

Frequently asked questions

It connects Gumroad MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 12 tools (gumroad_get_products, gumroad_get_product, gumroad_disable_product, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Gumroad MCP directly.