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