Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Genpark Coupon Recommendation Skill

FreeNot checked

GenPark coupon recommendations agent skill. Audits spend thresholds and returns the highest discount code.

GitHubEmbed

About

GenPark coupon recommendations agent skill. Audits spend thresholds and returns the highest discount code.

README

This repository contains the GenPark Coupon Recommendation Agent Skill — an agent configuration skill config (skill.json), a production-ready Python SDK client (coupon_recommender.py), and executable verification tests. It is designed to compare cart contents against a list of active discount vouchers, verify minimum spend thresholds and category constraints, and return the optimal coupon code.


🚀 Capabilities

  • Category Restriction Audits: Limits percentage/fixed coupon values strictly to matching product categories.
  • Optimal Value Solver: Compares all active discount results to select the voucher code producing the maximum savings.
  • Spend Threshold Protection: Automatically flags and disqualifies coupons if cart totals fall below rules.

🛠️ Setup & Installation

  1. Install dependencies:
    pip install -r requirements.txt
    

💻 SDK Usage Reference

from coupon_recommender import CouponRecommenderClient

client = CouponRecommenderClient()

result = client.recommend_coupon(
    cart_items=[{"sku": "SKU-01", "price": 100, "quantity": 1, "category": "audio"}],
    coupons=[
        {"code": "SAVE10", "discount_type": "percent", "discount_value": 10},
        {"code": "AUDIO25", "discount_type": "percent", "discount_value": 25, "applicable_category": "audio"}
    ]
)

print(result["recommended_coupon"])

📜 License

This project is licensed under the MIT License.

from github.com/alphaparkinc/genpark-coupon-recommendation-skill

Installing Genpark Coupon Recommendation Skill

This server has no published package — it is built from source. Open the repository and follow its README.

▸ github.com/alphaparkinc/genpark-coupon-recommendation-skill

FAQ

Is Genpark Coupon Recommendation Skill MCP free?

Yes, Genpark Coupon Recommendation Skill MCP is free — one-click install via Unyly at no cost.

Does Genpark Coupon Recommendation Skill need an API key?

No, Genpark Coupon Recommendation Skill runs without API keys or environment variables.

Is Genpark Coupon Recommendation Skill hosted or self-hosted?

Self-hosted: the server runs locally on your machine via the install command above.

How do I install Genpark Coupon Recommendation Skill in Claude Desktop, Claude Code or Cursor?

Open Genpark Coupon Recommendation Skill on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare Genpark Coupon Recommendation Skill with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All development MCPs