Fire in da houseTop Tip:Paying $100+ per month for Perplexity, MidJourney, Runway, ChatGPT and other tools is crazy - get all your AI tools in one site starting at $15 per month with Galaxy AI Fire in da houseCheck it out free

gumroad-mcp

MCP.Pizza Chef: rmarescu

Gumroad MCP Server is a Model Context Protocol server implementation that connects AI clients like Claude Desktop to the Gumroad API. It enables real-time, structured interaction with Gumroad's platform, allowing AI assistants to retrieve and manipulate Gumroad data securely and efficiently. This server simplifies integrating Gumroad's e-commerce capabilities into AI workflows, supporting credential setup and command execution for seamless API access.

Use This MCP server To

Retrieve Gumroad product and sales data via AI clients Automate Gumroad order management through natural language commands Integrate Gumroad e-commerce data into AI-powered dashboards Enable AI assistants to query Gumroad customer information Trigger Gumroad API actions from AI workflows Streamline Gumroad subscription and payment status checks Facilitate AI-driven marketing insights from Gumroad analytics

README

Gumroad MCP Server

Smithery Badge

gumroad-mcp-60.mp4

Overview

A Model Context Protocol (MCP) server implementation for Gumroad, enabling MCP-compatible AI clients like Claude Desktop to interact with Gumroad API.

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

Quickstart

Start using Gumroad MCP Server with Claude Desktop in seconds:

npx gumroad-mcp@latest init

This command sets up the MCP server with your Gumroad credentials through an interactive prompt.

Usage

Once configured, try these commands in your MCP-compatible client:

  • How many sales did I make last month vs a year ago?
  • Generate an interactive chart with last year's sales
  • List my top-selling products on Gumroad from last year
  • Show month-over-month trend of my top-selling product last year
  • Disable "Product Name" product
  • Enable "Product Name" product
  • List all offer codes for "Product Name"
  • Create a new offer code "FAFO" with 99% off for "Product Name"
  • Delete offer code "abc123" from "Product Name"

Tools

  • 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

Installation

Installing via Smithery

To install gumroad-mcp for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @rmarescu/gumroad-mcp --client claude

Prerequisites

  • 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 the following command:

node --version

Generate a Gumroad access token

Gumroad API requires authentication. To generate an access token, follow these steps:

  1. Log in to your Gumroad account (or your own instance of Gumroad).
  2. Go to Settings > Advanced page.
  3. Create a new application by providing the following information:
    • Application icon (optional): A small thumbnail image to identify your application.
    • Application name: A name for your application.
    • Redirect URI: For personal use, you can enter http://127.0.0.1 (localhost) as this value is not meaningful in this context.
  4. Click "Create application."
  5. Use the "Generate access token" button to get your access token.

Keep your access token safe and confidential, like a password. You'll need to include it in your configuration as shown below.

Claude Desktop installation

If you use Claude Desktop, you can use the interactive setup:

npx gumroad-mcp@latest init

Manual installation

For other MCP-enabled applications, you will need to update the MCP configuration manually.

Example config

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

If you're using a self-hosted Gumroad instance, you can configure the server to connect to your custom URL via GUMROAD_BASE_URL:

{
  "mcpServers": {
    "gumroad": {
      "command": "npx",
      "args": ["-y", "gumroad-mcp@latest"],
      "env": {
        "GUMROAD_ACCESS_TOKEN": "<YOUR_TOKEN>",
        "GUMROAD_BASE_URL": "https://example.com"
      }
    }
  }
}

Note

The server automatically appends the API version (/v2) to your base URL. For example, with GUMROAD_BASE_URL="https://example.com", API requests will be sent to https://example.com/v2.

Please refer to these instructions on how to add the MCP Server to Claude Desktop.

Contributing

Found a bug or want to suggest a feature? Please open an issue or submit a pull request on GitHub.

License

This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.

gumroad-mcp FAQ

How do I set up the Gumroad MCP Server?
Use the command 'npx gumroad-mcp@latest init' to start an interactive setup for your Gumroad credentials.
Can I use the Gumroad MCP Server with multiple AI clients?
Yes, it supports any MCP-compatible AI client like Claude Desktop.
Is my Gumroad data secure when accessed via this MCP server?
Yes, the server uses secure credential handling and scoped API access to protect your data.
What Gumroad API features are accessible through this MCP server?
You can access product info, sales data, customer details, orders, subscriptions, and payments.
Does the Gumroad MCP Server support real-time data updates?
It enables real-time interaction as supported by the Gumroad API and MCP protocol.
Can I customize commands or extend functionality?
Yes, developers can extend the server to add custom commands or integrate additional Gumroad API endpoints.
What platforms can run the Gumroad MCP Server?
It runs on any platform supporting Node.js and npm.
How does this server improve AI workflows with Gumroad?
It automates data retrieval and actions, reducing manual API calls and enabling natural language interactions.