A tool to scrape product information from AliExpress, including title, description, and main image.
- Extracts product title, description, and main image
- Multiple extraction methods (JSON-LD, embedded state, meta tags)
- HTTP server for easy API access
- MCP (Model Context Protocol) server support
npm installnpm startThen make POST requests to /fetch:
curl -X POST http://localhost:3000/fetch \
-H "Content-Type: application/json" \
-d '{"url": "https://www.aliexpress.com/item/..."}'Run with:
node src/index.jsaliexpress-mcp/
βββ src/
β βββ scraper.js # Core scraping logic
β βββ http-server.js # Express HTTP server
β βββ index.js # MCP server
βββ package.json
βββ package-lock.json
ISC