Extract relevant images from product and article pages
Enter one or more URLs to extract relevant images from product or article pages.
Get your API key from Google AI Studio. Your key is stored locally in your browser.
This MCP server extracts only the relevant images from product or article pages, automatically filtering out:
Returns deduplicated, largest variant images with AI-generated captions in multiple languages.
This MCP server uses simple API key authentication. You need a Gemini API key from Google.
https://image.kapler.cz/mcp?api_key=your-gemini-api-key-hereyour-gemini-api-key-here with your actual Gemini API key{
"urls": ["https://example.com/product"], // 1-10 URLs
"mode": "auto", // auto | product | article
"maxImagesPerSource": 20, // 1-50
"includeSizes": true, // probe dimensions
"languages": ["en", "cs"], // caption languages
"api_key": "optional-gemini-key" // if not in header
}{
"version": "1.0.0",
"generatedAt": "2024-01-15T10:30:00Z",
"sources": [{
"inputUrl": "https://example.com/product",
"finalUrl": "https://example.com/product",
"pageType": "product",
"mainImage": "https://cdn.example.com/img1.jpg",
"images": [{
"url": "https://cdn.example.com/img1.jpg",
"isMain": true,
"width": 1200,
"height": 800,
"caption": {
"cs": "Hlavnà produktový obrázek",
"en": "Main product image"
},
"confidence": 0.95
}],
"warnings": []
}],
"errors": []
}