Install
openclaw skills install yundian-woo-importerImport products from Shopify, Wix, WordPress, and Amazon directly into WooCommerce via natural language.
openclaw skills install yundian-woo-importerThis skill enables your OpenClaw agent to seamlessly import products from various e-commerce platforms (Shopify, Wix, WordPress, Amazon) directly into a WooCommerce store using the Yundian+ API and MCP Server.
Since this skill relies on an underlying MCP server, you need to configure your OpenClaw settings to point to it.
Add the following to your OpenClaw MCP configuration (~/.openclaw/config.json):
{
"mcpServers": {
"yundian-woo-importer": {
"command": "npx",
"args": ["-y", "tsx", "{baseDir}/mcp-server.ts"],
"env": {
"YUNDIAN_WOO_IMPORTER_API_KEY": "${YUNDIAN_WOO_IMPORTER_API_KEY}",
"YUNDIAN_WOO_IMPORTER_API_URL": "https://ydplus.net"
}
}
}
}
The bundled MCP server exposes the following tools to the agent:
import_productsQueue products for import from a source platform to WooCommerce.
platform (string, required): The source platform. Enum: shopify, wix, wordpress, amazon.shopifyBaseUrl (string): Required if platform is shopify. (e.g., https://example.myshopify.com)wixUrl (string): Required if platform is wix.productLinks (array of strings): List of product URLs or handles to import.mode (string): Set to all to discover and import all products (Supported for Shopify only).check_import_statusCheck the status and results of an ongoing or completed import job.
requestId (string, required): The unique request ID returned when import_products was successfully called.When the user asks you to import products:
import_products tool with the appropriate parameters. Ensure you provide the necessary base URL or specific product links.requestId.check_import_status tool with the requestId to fetch the latest progress, including how many products were successfully imported or failed.YUNDIAN_WOO_IMPORTER_API_KEY might be invalid or expired.