npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@reponseai/mcp

v0.1.0

Published

MCP Server for Reponse Headless Commerce

Readme

@reponse/mcp

Headless Commerce MCP Server — Connect Claude, Cursor, or Windsurf to your Reponse store in 30 seconds.

npm version MIT License

What is this?

An MCP (Model Context Protocol) server that gives AI agents full access to a Reponse Commerce backend — catalog browsing, cart management, checkout, order support, tickets, discounts, and more.

20 tools covering the complete e-commerce lifecycle:

| Category | Tools | |---|---| | Catalog | list_products, get_product, list_collections | | Cart | create_cart, get_cart, add_to_cart, update_cart_item, remove_cart_item | | Checkout | create_checkout | | Order Support | update_shipping_address, resend_order_confirmation, resend_invoice, cancel_order | | Tickets | list_tickets, get_ticket, create_ticket, reply_to_ticket | | Discounts | list_discount_codes, validate_discount_code, create_discount_code |

Quick Start

1. Get an API Key

Sign up at app.reponse.ai and go to Settings → API Keys to generate a key (sk_live_...).

2. Configure your AI client

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "reponse": {
      "command": "npx",
      "args": ["-y", "@reponse/mcp"],
      "env": {
        "REPONSE_API_KEY": "sk_live_your_key_here"
      }
    }
  }
}

Cursor

Add to .cursor/mcp.json in your project root:

{
  "mcpServers": {
    "reponse": {
      "command": "npx",
      "args": ["-y", "@reponse/mcp"],
      "env": {
        "REPONSE_API_KEY": "sk_live_your_key_here"
      }
    }
  }
}

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "reponse": {
      "command": "npx",
      "args": ["-y", "@reponse/mcp"],
      "env": {
        "REPONSE_API_KEY": "sk_live_your_key_here"
      }
    }
  }
}

3. Start chatting

Ask your AI assistant:

  • "Show me all products in the store"
  • "Create a cart with 2x the blue hoodie"
  • "Generate a checkout link for cart xyz"
  • "Cancel order #1234 — customer changed their mind"
  • "List all open support tickets"

Environment Variables

| Variable | Required | Description | |---|---|---| | REPONSE_API_KEY | ✅ | Your Reponse API key (sk_live_... or sk_test_...) | | REPONSE_API_URL | ❌ | API base URL (default: https://api.reponse.ai) |

Tools Reference

Catalog

  • list_products — List products with optional search query and limit
  • get_product — Get a single product by UUID with variants, images, and pricing
  • list_collections — List product collections/categories

Cart

  • create_cart — Create a new cart, optionally with initial items
  • get_cart — Retrieve cart contents and totals
  • add_to_cart — Add items to an existing cart
  • update_cart_item — Update quantity of a cart line item (set to 0 to remove)
  • remove_cart_item — Remove a line item from a cart

Checkout

  • create_checkout — Generate a Stripe Checkout payment URL for a cart

Order Support

  • update_shipping_address — Update shipping address (requires identity verification, order must be unfulfilled)
  • resend_order_confirmation — Resend confirmation email (rate limited: 3/hour)
  • resend_invoice — Resend invoice PDF (rate limited: 3/hour)
  • cancel_order — Cancel order with Stripe refund (rate limited: 1/hour, 3/30 days)

Tickets

  • list_tickets — List support tickets with filters (status, category, email)
  • get_ticket — Get ticket details with full conversation history
  • create_ticket — Open a new support ticket for a customer
  • reply_to_ticket — Send a reply to an existing ticket

Discounts

  • list_discount_codes — List discount codes with active/type filters
  • validate_discount_code — Validate a code and calculate potential savings
  • create_discount_code — Create a new discount code (percentage, fixed, free shipping, BXGY)

What is Reponse?

Reponse is an AI-native headless commerce platform. It provides a complete e-commerce backend (catalog, cart, checkout, orders, CRM, support) with a conversational AI sales engine built in.

This MCP server connects any AI agent to a Reponse store via the public REST API (/v1/*).

License

MIT