Skip to main content

MCP server for Yango Tech B2B API integration

Project description

๐Ÿš€ Yango Tech MCP Server - One Command Installation

๐Ÿ›’ Yango Tech Integration

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.

For Users - Simple Installation

Download this project and run one command:

python3 install.py

Done! Everything will be configured automatically. ๐ŸŽ‰


What the installer does:

  1. โœ… Automatically detects your OS (Mac/Windows/Linux)
  2. โœ… Finds Python and creates virtual environment
  3. โœ… Installs all dependencies automatically (including FastMCP 2.5+)
  4. โœ… Detects installed IDEs (Claude Desktop & Cursor IDE)
  5. โœ… Offers test API key or your own
  6. โœ… Creates IDE configurations automatically (if IDEs installed)
  7. โœ… Generates config files in project root for manual setup
  8. โœ… Tests functionality with real API
  9. โœ… Shows instructions for next steps

๐Ÿ’ก Works even without IDEs installed - configuration files are always generated!


๐ŸŽฏ POWERFUL IDE INTEGRATION

๐Ÿค– 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: Claude Product Report

๐ŸŽฌ Live Product Search Demo:

Claude Products Demo

๐Ÿ“ฆ Inventory Management: Claude Stock Report

๐Ÿ“‹ Order Details Lookup: Claude Order Detail

๐Ÿ” Order Status Tracking: Claude Order Status

โšก 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

๐ŸŽจ Why This Is Game-Changing:

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!


After installation

  1. Restart Claude Desktop and/or Cursor IDE (if installed)
  2. You'll have 6 Yango Tech tools with product name enrichment:
    • get_order_details - Get order details with product names
    • get_order_status - Get order status
    • get_all_products - Get all products with display names
    • get_products_batch - Get products with pagination and names
    • get_all_stocks - Get all stocks with product names
    • get_stocks_batch - Get stocks with pagination and names

๐ŸŽฏ Key Feature: All tools show user-friendly product names instead of cryptic product IDs!


๐Ÿ“ Generated Configuration Files

The installer always creates these files in the project root:

  • claude_desktop_config.json - Ready-to-use Claude Desktop configuration
  • cursor_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"

โš™๏ธ Requirements

  • Python 3.8+ (automatically detected and verified)
  • Internet for downloading dependencies
  • Claude Desktop and/or Cursor IDE (optional - configs generated anyway)

๐Ÿ Don't have Python installed?

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


๐Ÿงน Complete Environment Reset

If you need to completely clean and reinstall:

python3 cleanup.py
python3 install.py

The cleanup script removes:

  • Virtual environment
  • Configuration files from both IDEs
  • Generated configuration files
  • Environment files
  • Cache files

๐ŸŒ API Endpoints

  • Test Environment: https://api.tst.eu.cloudretail.tech
  • Production Environment: https://api.retailtech.yango.com

๐Ÿ› ๏ธ For Developers

Technical Information

Project Architecture

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

Development Installation

# 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

Technology Stack

API Endpoints

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

IDE Support

  • Claude Desktop: Uses mcpServers configuration
  • Cursor IDE: Uses mcp.servers configuration
  • Auto-detection: Installer detects which IDEs are installed
  • Universal: Works without IDEs - configs always generated

๐Ÿ“ž Support

If something doesn't work:

  1. Check Python: python3 --version (should be 3.8+)
  2. Complete reset: python3 cleanup.py && python3 install.py
  3. Manual setup: Use generated config files (claude_desktop_config.json, cursor_settings.json)
  4. Manual setup guide: MANUAL_SETUP.md for detailed instructions
  5. Check IDE logs (Claude Desktop or Cursor IDE)
  6. 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)!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file iflow_mcp_zamb124_mcp_server_yango_tech-0.1.1.tar.gz.

File metadata

  • Download URL: iflow_mcp_zamb124_mcp_server_yango_tech-0.1.1.tar.gz
  • Upload date:
  • Size: 6.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"13","id":"trixie","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for iflow_mcp_zamb124_mcp_server_yango_tech-0.1.1.tar.gz
Algorithm Hash digest
SHA256 62249a111d3cd4d21e17bf5b631ff38b6343aa2b5c7eb4a5728d008886065888
MD5 7b32b05762c26ecf0951c5fca62ed2b0
BLAKE2b-256 a6a249aee279595540a4aa42a0e6088cfd5ad4b640bf81d15a52d2f944093514

See more details on using hashes here.

File details

Details for the file iflow_mcp_zamb124_mcp_server_yango_tech-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: iflow_mcp_zamb124_mcp_server_yango_tech-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 6.6 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"13","id":"trixie","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for iflow_mcp_zamb124_mcp_server_yango_tech-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 57dc0b2259b29a1a366c17bfc758ad25286f7b20508346c2df7c6cdeae6b0ae1
MD5 4125dcaa7675643524846afc592bd039
BLAKE2b-256 c80b9d070077a188c6e2cc4317a74d9f3af5094a67f7150a80ce847929577bbb

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page