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

uop-mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

uop-mcp-server

Universal MCP Server for AI-powered e-commerce integration via HTTP API

pipPyPI
Version
2.0.5
Weekly downloads
13
-18.75%
Maintainers
1
Weekly downloads
 
UOP Logo

uop-mcp-server

mcp-name: com.unifiedoffer/mcp-server

Universal MCP Server for AI-powered e-commerce integration

PyPI version Python Downloads License MCP

Connect AI applications to Shopify, WooCommerce, and Shopware 6 with automatic discount generation.

Installation

pip install uop-mcp-server

Quick Start

from uop_mcp_server import UOPMCPClient

# Create client
client = UOPMCPClient("YOUR_API_KEY")

# Search products
products = client.search_products("laptop", limit=10)

# Generate affiliate links
links = client.generate_links([product_id1, product_id2])

# Negotiate price
offer = client.negotiate_price(product_id, 15)  # 15% discount

# Context manager (auto-close)
with UOPMCPClient("YOUR_API_KEY") as client:
    products = client.search_products("laptop")

Async Support

import asyncio
from uop_mcp_server import UOPMCPClient

async def main():
    async with UOPMCPClient("YOUR_API_KEY") as client:
        products = await client.search_products_async("laptop")
        print(products)

asyncio.run(main())

Features

  • Product Search: Query products across connected e-commerce platforms
  • Affiliate Links: Generate trackable links with automatic discounts
  • Price Negotiation: AI-powered price negotiation within merchant rules
  • Thread Management: Persistent conversations with context
  • Multi-Platform: Shopify, WooCommerce, Shopware 6 support
  • Async/Await: Full async support with httpx

API Key

Get your free API key at https://unifiedoffer.com

Documentation

License

MIT

Keywords

affiliate

FAQs

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