PolarHub
  • Agents
  • MCP Servers
  • Skills
  • PolarBear
PolarHub © 2026
MCP Serversecommerce-and-retailgumroad-mcp
返回「ecommerce-and-retail」

gumroad-mcp

modelscope·@keithah/gumroad-mcp

ecommerce-and-retail0下载LocalModelScope

简介

暂无描述。

MCP Server 详情

来自 ModelScope 索引

Gumroad MCP Server

A Model Context Protocol (MCP) server for the Gumroad API, enabling AI assistants to look up subscription information, sales data, and product details.

Features

  • Subscription Management: Get subscriber lists and individual subscriber details
  • Sales Data: Query sales with filters (date range, email, pagination)
  • Product Information: Retrieve product listings and details
  • Type-Safe: Written in TypeScript with comprehensive type definitions
  • Smithery Compatible: Ready to deploy on Smithery.ai

Available Tools

Subscribers

  • get_subscribers - Get all subscribers for a specific product
  • get_subscriber - Get details for a specific subscriber

Sales

  • get_sales - Get all sales with optional filters (date range, email, pagination)
  • get_sale - Get details for a specific sale

Products

  • get_products - Get all your Gumroad products
  • get_product - Get details for a specific product

Installation

Using Smithery (Recommended)

  1. Visit Smithery.ai
  2. Search for "gumroad-mcp" or install directly from this repository
  3. Configure with your Gumroad access token
  4. Deploy and use in Claude Desktop or other MCP clients

Manual Installation

# Clone the repository
git clone <your-repo-url>
cd gumroad-mcp

# Install dependencies
npm install

# Build the project
npm run build

# Run the server
GUMROAD_ACCESS_TOKEN=your_token_here npm start

Configuration

Getting Your Gumroad Access Token

  1. Go to https://gumroad.com/api
  2. Click "Create an application"
  3. Generate an access token
  4. Copy the token for use in configuration

Environment Variables

  • GUMROAD_ACCESS_TOKEN (required) - Your Gumroad API access token

Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "gumroad": {
      "command": "node",
      "args": ["/path/to/gumroad-mcp/dist/index.js"],
      "env": {
        "GUMROAD_ACCESS_TOKEN": "your_token_here"
      }
    }
  }
}

Usage Examples

Get Product Subscribers

Get all subscribers for product ID "abc123"

The assistant will call get_subscribers with product_id: "abc123".

Query Sales by Email

Show me all sales for customer@example.com

The assistant will call get_sales with email: "customer@example.com".

Get Sales in Date Range

Show me all sales from January 2025

The assistant will call get_sales with appropriate after and before timestamps.

API Response Examples

Subscriber

{
  "id": "sub_123",
  "product_id": "prod_abc",
  "product_name": "My Product",
  "user_email": "customer@example.com",
  "status": "alive",
  "recurrence": "monthly",
  "created_at": "2025-01-01T00:00:00Z"
}

Sale

{
  "id": "sale_123",
  "email": "customer@example.com",
  "product_name": "My Product",
  "price": 2900,
  "formatted_display_price": "$29",
  "timestamp": "2025-01-01T00:00:00Z",
  "is_recurring_billing": true,
  "subscription_id": "sub_123"
}

Development

# Install dependencies
npm install

# Build in watch mode
npm run dev

# Build for production
npm run build

# Run the server
npm start

API Permissions

The server requires a Gumroad access token with the following scopes:

  • view_sales - To read sales and subscription data
  • view_profile - To read product information

Error Handling

All tools include comprehensive error handling. If an API call fails, you'll receive a descriptive error message explaining what went wrong.

License

MIT

Links

  • Gumroad API Documentation
  • Model Context Protocol
  • Smithery

相关 MCP Servers(来自「ecommerce-and-retail」)

对话购物MCP

一种MCP服务器,它将人工智能助手连接到SearchAgora,使用户能够通过自然语言对话在网页上搜索、发现和购买产品。

@Fewsats/agora-mcp

多平台商品搜索

一个服务器,它通过BigGo的价格比较API,实现跨多个电子商务平台搜索产品、追踪价格历史以及比较产品规格的功能。

@Funmula-Corp/BigGo-MCP-Server

优步外卖AI下单助手

一个概念验证的模型上下文协议服务器,使大型语言模型应用程序能够与Uber Eats互动,允许人工智能代理通过自然语言浏览和订购食物。

@ericzakariasson/uber-eats-mcp-server

Actors 微云服务器

使用 Apify 提供的 3,000 多种预构建云工具(称为 Actors),从网站、电子商务平台、社交媒体、搜索引擎、地图等提取数据。

@apify/actors-mcp-server

bayarcash-mcp-server

暂无描述。

@khairulimran-97/bayarcash-mcp-server

bayarcash-mcp-server

暂无描述。

@webimpianteam/bayarcash-mcp-server

自动安装

点击按钮会唤起 PolarBear 客户端,并把当前 MCP Server 的 Markdown 详情文档地址传给客户端。

/api/mcps/keithah-gumroad-mcp/markdown
打开 PolarBear 安装查看 Markdown 文档

手动安装

在 PolarBear 或其他支持 MCP 的客户端中,新建 MCP Server,并参考下方来源或安装提示配置。

# Clone the repository git clone <your-repo-url> cd gumroad-mcp # Install dependencies npm install # Build the project npm run build # Run the server GUMROAD_ACCESS_TOKEN=your_token_here npm start

基本信息

分类
ecommerce-and-retail / customer-data-platforms / 金融
运行方式
No
许可证
Unknown
详情文件
keithah-gumroad-mcp.md