🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@gocushy/mcp

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@gocushy/mcp

gocushy MCP server — let AI agents create checkouts, offers, and follow-ups that sell

latest
Source
npmnpm
Version
0.15.0
Version published
Maintainers
1
Created
Source

gocushy MCP server

Give any AI agent the tools to run a complete selling system: products, offers with order bumps and one-click upsells, hosted checkouts, subscriptions, coupons, embeds, orders, refunds, affiliates, email follow-up, and sales stats — on the merchant's own Stripe or PayPal account.

28 tools in all. Nothing is a mockup: the agent creates real checkouts that take real money into the merchant's own account. Totals, fees, and tax are computed server-side, so an agent can't ship a broken or mispriced checkout.

Install

npm install -g @gocushy/mcp

Point your client at the gocushy-mcp command (stdio transport), passing the merchant's API key:

{
  "mcpServers": {
    "gocushy": {
      "command": "gocushy-mcp",
      "env": {
        "GOCUSHY_API_KEY": "gc_your_key_here",
        "GOCUSHY_API_URL": "https://api.gocushy.com"
      }
    }
  }
}

Or run it without installing — swap the command for "command": "npx", "args": ["-y", "@gocushy/mcp"].

Then just talk: "Set up a checkout for my $49 course, add my $17 workbook as an order bump, and give me the embed code."

Create an API key at https://api.gocushy.com/signup.

Remote connection (ChatGPT and other hosted clients)

Prefer a URL over a local process? gocushy runs a hosted MCP endpoint. Put the merchant's key in the path:

https://gocushy-mcp.fly.dev/mcp/gc_your_key_here

For ChatGPT connectors (which can't carry a key in the URL), connect to https://gocushy-mcp.fly.dev/mcp and paste the API key on the consent screen — the server speaks OAuth 2.0 (PKCE) for exactly this handoff.

Tools

A representative slice — 28 in total, spanning products, offers, checkout copy & layout, delivery, orders & sales, refunds, coupons, affiliates, email follow-up, webhooks, and business/tax settings:

ToolWhat it does
connect_paymentStart Stripe onboarding (returns a URL for the human — the one manual step)
connect_paypalConnect a PayPal account as a payment rail
payment_statusIs the account ready to take payments?
create_productCreate a sellable product (one-time or subscription)
create_offerCompose a checkout: product + optional bump + optional one-click upsell, plus a per-offer top logo (checkout_logo_url)
update_checkoutCustomize checkout copy, layout, the brand banner, the per-offer logo, and the one-click upsell page (headline, body, accept/decline labels)
create_couponA promo code buyers type at checkout — works on one-time and subscription offers
get_checkout_linkHosted checkout URL — works immediately
get_embed_codeCopy-paste overlay snippet for any site
list_orders / get_salesOrders with bump/upsell flags; revenue and per-offer breakdown
refund_orderFull or partial refund (reverses the transfer + fee)
connect_email / set_followupWire buyers into the merchant's Mailchimp / ActiveCampaign sequences
create_affiliate / create_webhookAffiliate links with holdback; order webhooks for custom fulfillment

The full tool list, with every parameter, is advertised by the server itself — your agent discovers it on connect.

Design principles

  • Server-side truth. Totals, fees, tax, and state live in the API; tools can't create a broken or mispriced checkout.
  • Fail loudly. Validation errors come back verbatim so the agent can fix its call and retry.
  • One human touchpoint. Everything is agent-operable except payment-provider KYC, which is legally the merchant's to complete.

Development

npm install && npm run build
GOCUSHY_API_KEY=gc_... node dist/index.js   # stdio transport

Keywords

mcp

FAQs

Package last updated on 04 Aug 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts