# Gumroad — MCP server on mcp.ai > Gumroad simplifies selling digital goods, physical products, and memberships by offering a streamlined checkout, marketing tools, and direct payout options By: mcp.ai · official Page: https://mcp.ai/gumroad ## Connect (MCP protocol) Remote MCP endpoint (HTTP, streamable): https://api.mcp.ai/p_gumroad?ms=1781543520000 Add it as a custom/remote MCP connector, then authenticate when prompted. ## REST API (no MCP client required) Every tool is also a REST endpoint, authed with a workspace API key. Discover: GET https://api.mcp.ai/api/gumroad/_endpoints # public; lists every endpoint Call: POST https://api.mcp.ai/api/gumroad/ Authorization: Bearer sk_live_… # create one at https://mcp.ai/settings/api-keys Content-Type: application/json Body: { …args } → { "ok": true, "tool": "", "result": { … } } ## Developer docs How to use (MCP or REST), markdown: https://mcp.ai/gumroad/skill.md Postman collection (v2.1): https://mcp.ai/gumroad/postman.json ## Tools - gumroad_get_resource_subscriptions(resource_name: string) — Tool to show all active subscriptions of the user for the input resource. use when you need to review existing webhooks before adding a new one. - gumroad_get_sales(page?: integer, after?: string, email?: string, before?: string, product_id?: string) — Tool to retrieve all successful sales by the authenticated user. use when you need to list your gumroad sales, optionally filtering by email, date range, product, or pagination. - gumroad_get_user() — Tool to retrieve the authenticated user's data. use when you need the current user's profile details after authentication. - gumroad_subscribe_to_resource(post_url: string, resource_name: string) — Tool to subscribe to a resource. use when you need to receive real-time event webhooks after creating your webhook endpoint. - gumroad_unsubscribe_from_resource(resource_subscription_id: string) — Tool to unsubscribe from a resource. use after verifying the subscription id exists to remove webhook. ## Links Docs: https://mcp.ai/docs/mcps/gumroad Website: https://mcp.ai/mcps/gumroad