Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Genpark Conversational Product Advisor Skill

FreeNot checked

Conversational product shopping assistant skill designed to guide users from product exploration to purchase.

GitHubEmbed

About

Conversational product shopping assistant skill designed to guide users from product exploration to purchase.

README

GenPark AI Agent Skill -- # Conversational Product Advisor Skill

This repository contains the Conversational Product Advisor Skill — an agentic shopping assistant interface configuration (skill.json), developer SDK client (product_advisor.py), and validation script for running conversational product searches and technical compatibility checks.


🚀 Capabilities

  • Compatibility Check Engine: Verifies technical constraints (e.g. computer component socket matches, size configurations) before items are added to a cart.
  • Diagnose User Preferences: Converses with customers to narrow down specifications, sizes, and colors when user inputs are too vague.
  • Budget Safeguards: Computes cart values dynamically against user limits and offers cheaper alternative configurations when limits are breached.

🛠️ Setup & Installation

  1. Install dependencies:

    pip install -r requirements.txt
    
  2. Configuration: Set your API environment variables if executing requests against the live production server (otherwise, client executes in mock mode):

    • PowerShell:
      $env:ADVISOR_API_KEY="your_api_key"
      
    • bash:
      export ADVISOR_API_KEY="your_api_key"
      

💻 SDK Usage Reference

from product_advisor import ProductAdvisorClient

# Initialize Client (mock mode by default)
client = ProductAdvisorClient()

# Check compatibility between cart items and a candidate item
compat = client.check_compatibility(
    cart_items=[{"name": "i9 CPU", "specs": {"socket": "LGA1700"}}],
    new_item={"name": "AMD Motherboard", "specs": {"socket": "AM5"}}
)
print(f"Is Compatible: {compat['is_compatible']}")
print(f"Warnings: {compat['warnings']}")

# Process shopping chat message
response = client.get_advisor_response(
    dialog_history=[{"sender": "user", "text": "I need a motherboard."}],
    cart=[{"name": "i9 CPU"}],
    preferences={"max_budget": 1000.00}
)
print(response["advisor_response"])
print(response["cart_updates"])

📜 License

This project is licensed under the MIT License.

from github.com/alphaparkinc/genpark-conversational-product-advisor-skill

Installing Genpark Conversational Product Advisor Skill

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

▸ github.com/alphaparkinc/genpark-conversational-product-advisor-skill

FAQ

Is Genpark Conversational Product Advisor Skill MCP free?

Yes, Genpark Conversational Product Advisor Skill MCP is free — one-click install via Unyly at no cost.

Does Genpark Conversational Product Advisor Skill need an API key?

No, Genpark Conversational Product Advisor Skill runs without API keys or environment variables.

Is Genpark Conversational Product Advisor Skill hosted or self-hosted?

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

How do I install Genpark Conversational Product Advisor Skill in Claude Desktop, Claude Code or Cursor?

Open Genpark Conversational Product Advisor 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 Conversational Product Advisor Skill with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All ai MCPs