This project provides integration with Yango Tech - a leading platform for ecommerce automation.
Yango Tech is part of Yango Group, a global tech company that transforms the everyday business of people around the world:
π 150m+ rides since 2018
π° $2.5B+ GMV
β
99.99% orders delivered without missing items
π¦ 1.3M+ daily orders
Yango Tech offers comprehensive solutions for:
- π APP Website applications
- πͺ Order management and logistics
- π¦ Real-time inventory management
- ποΈ Product cataloging with detailed information
- π Delivery and order fulfillment
- π Analytics and sales reporting
- π API integration for B2B automation
Through this MCP server, you can easily interact with the Yango Tech API directly from Claude Desktop or Cursor IDE, gaining access to orders, products, stock levels, and other platform information.
Download this project and run one command:
python3 install.pyDone! Everything will be configured automatically. π
- β Automatically detects your OS (Mac/Windows/Linux)
- β Finds Python and creates virtual environment
- β Installs all dependencies automatically (including FastMCP 2.5+)
- β Detects installed IDEs (Claude Desktop & Cursor IDE)
- β Offers test API key or your own
- β Creates IDE configurations automatically (if IDEs installed)
- β Generates config files in project root for manual setup
- β Tests functionality with real API
- β Shows instructions for next steps
π‘ Works even without IDEs installed - configuration files are always generated!
π€ Claude Desktop & Cursor IDE Ready!
After installation, you'll have seamless integration with:
π₯οΈ Claude Desktop
Professional AI assistant with Yango Tech powers
- π¬ Natural language queries to Yango Tech API
- π Smart product search with readable names
- π Order management through conversation
- π Real-time inventory checking
πΈ See Claude Desktop in Action:
ποΈ Product Catalog Analysis:

π¬ Live Product Search Demo:
β‘ Cursor IDE
AI-powered code editor with business data access
- π οΈ Code while querying Yango Tech data
- π API integration directly in your workflow
- π Documentation generation with real data
- π Rapid prototyping with live business insights
Instead of switching between multiple tools, you can:
- β¨ Ask Claude: "Show me details for order 240920-728268"
- β¨ Ask Cursor: "What products are low in stock at store L001?"
- β¨ Get instant answers with human-readable product names
- β¨ Work faster with natural language instead of complex API calls
π All powered by Yango Tech - your ecommerce automation platform!
- Restart Claude Desktop and/or Cursor IDE (if installed)
- You'll have 6 Yango Tech tools with product name enrichment:
get_order_details- Get order details with product namesget_order_status- Get order statusget_all_products- Get all products with display namesget_products_batch- Get products with pagination and namesget_all_stocks- Get all stocks with product namesget_stocks_batch- Get stocks with pagination and names
π― Key Feature: All tools show user-friendly product names instead of cryptic product IDs!
The installer always creates these files in the project root:
claude_desktop_config.json- Ready-to-use Claude Desktop configurationcursor_settings.json- Ready-to-use Cursor IDE configuration
Use these files for:
- Manual IDE setup
- Backup configurations
- Copying settings to other machines
- Troubleshooting
π§ͺ Test commands for Claude Desktop & Cursor IDE:
- "Show 5 products from Yango Tech catalog" (with product names)
- "Show product stocks in stores" (with product names)
- "Show details of order 240920-728268" (with enriched cart items)
- "Get order status for 240920-728268"
- Python 3.8+ (automatically detected and verified)
- Internet for downloading dependencies
- Claude Desktop and/or Cursor IDE (optional - configs generated anyway)
No problem! If Python is missing or too old, the installer shows detailed installation guides:
- macOS: Official installer, Homebrew, or pyenv
- Windows: Official installer (
β οΈ check "Add to PATH"), Microsoft Store, or Chocolatey - Linux: Package manager (
apt,dnf,pacman) or from source
Why Python 3.8+? Required for FastMCP framework compatibility.
Quick check: Run python3 --version or python --version
π Detailed guide: See PYTHON_SETUP.md for step-by-step instructions
If you need to completely clean and reinstall:
python3 cleanup.py
python3 install.pyThe cleanup script removes:
- Virtual environment
- Configuration files from both IDEs
- Generated configuration files
- Environment files
- Cache files
- Test Environment:
https://api.tst.eu.cloudretail.tech - Production Environment:
https://api.retailtech.yango.com
Technical Information
yangotech_mcp/
βββ install.py # π― Universal installer
βββ cleanup.py # π§Ή Complete cleanup script
βββ server.py # FastMCP server
βββ client.py # HTTP client for Yango Tech API
βββ models.py # Pydantic data models
βββ claude_desktop_config.json # Generated Claude config
βββ cursor_settings.json # Generated Cursor config
βββ README.md # This documentation
# Create virtual environment
python3 -m venv .venv
source .venv/bin/activate # macOS/Linux
# or
.venv\Scripts\activate # Windows
# Install dependencies (now includes FastMCP 2.5+)
pip install -e .
# Test API
export YANGO_TECH_API_KEY="your_api_key"
python test_api_connection.py
# Run MCP server
python server.py- FastMCP 2.5+: Modern MCP server framework
- Python 3.8+: Core language
- HTTPx: Async HTTP client
- Pydantic: Data validation
- python-dotenv: Environment management
Server works with real Yango Tech API:
- Test URL:
https://api.tst.eu.cloudretail.tech/b2b/v1 - Production URL:
https://api.retailtech.yango.com/b2b/v1 - Authorization: OAuth token in header
- Methods: POST for most requests
- Pagination: Cursor-based for large data
- Claude Desktop: Uses
mcpServersconfiguration - Cursor IDE: Uses
mcp.serversconfiguration - Auto-detection: Installer detects which IDEs are installed
- Universal: Works without IDEs - configs always generated
If something doesn't work:
- Check Python:
python3 --version(should be 3.8+) - Complete reset:
python3 cleanup.py && python3 install.py - Manual setup: Use generated config files (
claude_desktop_config.json,cursor_settings.json) - Manual setup guide: MANUAL_SETUP.md for detailed instructions
- Check IDE logs (Claude Desktop or Cursor IDE)
- Make sure IDEs are restarted after installation
π― Goal: One command - and everything works in both Claude Desktop and Cursor IDE (or generates configs for manual setup)!



