Promas
Promas is an MCP server for discovering, scraping, and retrieving verified high-resolution product images across e-commerce sites.
Fetch product images: Run a full pipeline from a product name or URL to get verified, master-resolution photo URLs.
Search product URLs: Discover and rank candidate e-commerce product pages without scraping images.
Scrape a single URL: Extract product titles and master image assets directly from a specific product page.
Filter by site: Restrict searches to specific domains like apple.com, nike.com, or bhphotovideo.com.
Control result size: Set maximum number of images or URLs returned.
Bypass cache when needed: Force live scraping with
no_cache.Use as an AI agent tool: Integrates via FastMCP and supports Docker deployment.
Extracts and upscales master-resolution product images from Amazon product pages and CDNs.
Extracts and upscales master-resolution product images from Apple product pages.
Uses Brave Search API as a pluggable discovery backend for finding candidate product pages.
Uses DuckDuckGo search as a default browser-based discovery backend for finding candidate product pages.
Extracts high-resolution product images from eBay product pages.
Uses Google Search via SerpAPI as a pluggable discovery backend for product page search.
Extracts and upscales master-resolution product images from Nike product pages and CDNs.
Extracts high-resolution product images from Shopify stores.
Extracts high-resolution product images from Sony product pages.
Extracts high-resolution product images from Target product pages, including CDN master upscaling.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@PromasFind verified high-res product images and links for the Sony FX3 camera."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Promas (Product Image Scraper)
Promas is an automated product image scraper and Model Context Protocol (MCP) server for AI agents.
Instead of writing fragile per-site scrapers that break whenever HTML structures change, Promas combines Pluggable Search-Driven Discovery with a Universal Semantic Extraction Pipeline and Extensible CDN-Aware Upscaling. It reliably extracts master-resolution product photography across any brand or retail site (Apple, Nike, Sony, Amazon, Target, B&H, Best Buy, eBay, Shopify stores, and arbitrary product URLs).
1. Quickstart
Option A: Install from PyPI (Recommended)
pip install promas
playwright install chromiumRun instantly from anywhere:
promas "iPhone 16 Pro"Option B: Run with Docker (Zero local Python / Playwright setup)
# Build the Docker image
docker build -t promas .
# Run the FastMCP Server for your AI Agent
docker run -i --rm promas
# Or run the standalone CLI scraper
docker run --rm promas promas "Sony FX3"Related MCP server: Web Search MCP Server
2. Architecture & Pipeline
graph TD
User([AI Agent / CLI Request]) --> Cache{TTL Disk Cache}
Cache -- "Cache Hit (<0.1s)" --> Return([Return Verified Master Assets])
Cache -- "Cache Miss" --> SearchRouter{Pluggable Discovery}
SearchRouter -->|BRAVE_API_KEY| BraveAPI[Brave Search API]
SearchRouter -->|SERPAPI_API_KEY| SerpAPI[SerpAPI Google]
SearchRouter -->|Default: Free / Zero Keys| BrowserSearch[Stealth Browser Discovery]
BraveAPI --> Scorer[E-Commerce Candidate Scorer]
SerpAPI --> Scorer
BrowserSearch --> Scorer
Scorer --> ParallelScraper[Parallel Multi-Page Scraper]
subgraph Scraping Pipeline
ParallelScraper --> RateLimiter[Domain Rate Limiter]
RateLimiter --> Parser[Universal Extractor: Schema.org, OG, Microdata, DOM]
Parser --> CDNUpscaler[CDN Master Upscalers: Scene7, Nike, Shopify, Amazon...]
end
CDNUpscaler --> Verifier[Async HTTP Verification & pHash Dedup]
Verifier --> CacheStore[(Save to Disk Cache)]
CacheStore --> Return3. Why Promas? (Comparison)
Feature | Raw Scripts ( | Paid APIs ( | Promas |
Cost | Free | $50–$500+/mo recurring | 100% Free & Open-Source (MIT) |
Setup & Maintenance | Fragile per-site selectors; breaks on redesigns | Generic HTML responses; requires custom parsers | Search-Driven + Semantic Schemas + CDN Upscalers |
Anti-Bot & Rate Limits | Blocked quickly by Cloudflare/Akamai | Handled in cloud | Per-Domain Rate Limiter + Stealth + Tenacity Retries |
Image Verification | None; returns broken links & 1x1 pixels | Basic status check | Async HTTP validation + pHash perceptual dedup |
Search Backends | Hardcoded scrapers | Custom API scrapers | Pluggable (Brave API / SerpAPI / Browser Fallback) |
Caching | None | Extra cost | Built-in TTL Disk Cache (Sub-second repeated queries) |
Image Quality | Usually captures low-res UI thumbnails | Raw page images only | Master CDN de-capping (up to 2500px+) |
AI Agent Native | Manual wrapper needed | REST API only | Native FastMCP Tool Protocol + Docker support |
4. Search Backends & Configuration
Promas works 100% out of the box with zero configuration or API keys required.
How Search Discovery Works:
Free / Default (Zero Setup): Promas uses its built-in Playwright Stealth browser engine to discover e-commerce candidates via Bing and DuckDuckGo for free.
Brave Search API (Recommended for Production): If
BRAVE_API_KEYis set, Promas switches to official, ToS-compliant, sub-second API discovery.Get a free key (2,000 free queries/month): Brave Search API
SerpAPI (Alternative): If
SERPAPI_API_KEYis set, Promas queries Google Search via SerpAPI.Get a free key (100 free queries/month): SerpAPI
Environment Variables Reference:
Variable | Default | Description |
| None | Optional API key for Brave Search |
| None | Optional API key for SerpAPI Google Search |
|
| Max simultaneous browser contexts |
|
| Max concurrent requests per target store |
|
| Polite delay between requests to the same domain |
|
| Toggle disk caching ( |
|
| Cache expiration time in seconds |
|
| Async HTTP MIME & pixel dimension check |
|
| pHash near-duplicate crop removal |
|
| Sensitivity threshold for pHash deduplication |
5. Usage
A. Standalone CLI
Search by Product Name:
promas "iPhone 16 Pro"Extract from a Direct URL:
promas "https://www.apple.com/iphone-16-pro/"Filter by Specific Domain & Limit Count:
promas "Sony FX3" --max-images 5 --site bhphotovideo.comBypass Cache or Disable Verification:
promas "Nike Air Jordan 1" --no-cache --no-verifyB. FastMCP Server
Run the standalone MCP server:
promas-mcpC. Agent Integration (mcp_config.json)
Native Python Installation:
{
"mcpServers": {
"promas": {
"command": "promas-mcp",
"env": {
"BRAVE_API_KEY": "optional-key-here"
}
}
}
}Docker Container (Zero-dependency setup):
{
"mcpServers": {
"promas": {
"command": "docker",
"args": ["run", "-i", "--rm", "promas"]
}
}
}6. Multi-Tool MCP Suite
Promas exposes dedicated granular tools to AI agents:
Tool | Purpose | Description |
| Full Pipeline | Query string or URL -> Automated discovery -> Parallel scrape -> HTTP validation -> pHash dedup -> Master photo links. |
| Discovery Only | Query string -> Fast ranking of candidate e-commerce product pages (returns URLs without scraping images). |
| Extraction Only | Specific direct URL -> Extracts title and master image assets strictly from that page. |
7. Agent System Prompt Guidelines
Add the following instructions to your AI agent's system prompt:
You have access to the `fetch_product_images` tool (Promas), which universally retrieves high-resolution product imagery and official product links from across the web.
GUIDELINES FOR USING PROMAS:
1. When asked for product images, photos, or visual references, call `fetch_product_images(query=<specific product name or direct URL>)`.
2. Do not invent or hallucinate image URLs; strictly return the verified URLs returned by Promas.
3. Render primary high-res images as markdown (e.g. ``) and provide source product links for reference.
4. If a specific store is desired by the user, you can supply `site_filter` (e.g. `site_filter="apple.com"`).8. Integration Examples & Frameworks
Promas includes copy-pasteable configuration snippets and runnable example scripts in the examples/ directory:
🤖 Claude Desktop: Complete setup guide and
claude_desktop_config.json.💻 Cursor IDE:
mcp.jsonconfig and prompt examples for Cursor Composer.🦜🔗 LangChain: Structured
@toolwrapper and ReAct agent script.⚡ OpenAI API: Native OpenAI Tool / Function Calling implementation.
📦 Smithery: One-click installation via
npx -y @smithery/cli install promas --client claude.
9. Output Schema
{
"status": "success",
"query": "iPhone 16 Pro",
"title": "Apple iPhone 16 Pro",
"sources_scraped": [
"https://www.target.com/p/apple-iphone-16-pro/-/A-93597960",
"https://www.amazon.com/Apple-iPhone-Version-256GB-Titanium/dp/B0DHJDPYYR",
"https://www.apple.com/shop/buy-iphone/iphone-16"
],
"images": [
"https://target.scene7.com/is/image/Target/GUEST_7c0750b4-ee18-41d4-9309-d08e41619229",
"https://target.scene7.com/is/image/Target/GUEST_4e1ce623-313f-4193-93a4-61dc0fc9da14"
],
"error_message": null
}10. Contributing
Contributions are warmly welcomed! Adding master upscaling support for a new e-commerce platform or CDN takes less than 10 lines of code with our decorator plugin registry.
See CONTRIBUTING.md for step-by-step instructions on adding a new CDN rule.
11. Testing & Quality Assurance
Promas includes unit tests for pure parsing functions, type checks, and canary integration tests:
# Run unit tests
pytest -v
# Run linting
ruff check .
# Run type checker
mypy promas/ tests/
# Run live golden canary integration tests (hits live sites)
pytest -v --run-integration12. Legal & Ethical Use
Public Access Only: Promas accesses exclusively publicly available web pages; it does not bypass authentication, paywalls, or private logins.
Terms of Service: Automated access may be subject to individual site Terms of Service. Always review target domains' ToS and robot policies before scraping at scale, or supply official search API keys (
BRAVE_API_KEY/SERPAPI_API_KEY) for ToS-compliant discovery.Image Copyright & Attribution: Promas resolves and returns direct image URLs — it does not store, rehost, or copy media files. Downstream display, storage, or commercial use of retrieved imagery is the user's responsibility.
13. License
This project is licensed under the MIT License.
Available Tools
4 toolsfetch_product_imagesA
Universally extracts verified, high-resolution product photography and official sources across the web.
USE THIS TOOL WHEN:
You need product photos, packshots, visual references, or master CDN assets for any physical item.
You want Promas to automatically discover authoritative stores, scrape candidate pages, verify images via HTTP, and deduplicate near-identical photo crops.
EXAMPLE QUERIES:
fetch_product_images(query="Sony FX3 Cinema Camera", max_images=5)
fetch_product_images(query="Nike Air Jordan 1", site_filter="nike.com")
fetch_product_images(query="https://www.target.com/p/apple-iphone-16-pro/-/A-93597960")
RETURNS:
ProductImageResult containing:
status: 'success' or 'error'
title: Cleaned product title
sources_scraped: List of retail & brand URLs visited
images: List of verified master-resolution image URLs (up to 2500px+)
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | The product name, model identifier, or direct e-commerce product URL to extract images for. Examples: 'iPhone 16 Pro', 'Nike Air Jordan 1 Low', 'Sony FX3 Cinema Camera', 'https://www.apple.com/iphone-16-pro/' | |
| no_cache | No | If True, bypasses the TTL disk cache and forces a live scrape. | |
| max_images | No | Maximum number of verified, high-resolution master product images to return (1-20). Default is 10. | |
| site_filter | No | Optional domain to restrict the product search to (e.g. 'apple.com', 'nike.com', 'bhphotovideo.com', 'amazon.com'). |
Output Schema
| Name | Required | Description |
|---|---|---|
| query | Yes | Search query or URL requested |
| title | No | Title of the matched product or primary page |
| images | No | Array of high-resolution image URLs |
| status | Yes | 'success' or 'error' |
| error_message | No | Error message if scraping failed |
| sources_scraped | No | URLs or domains scraped |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden and does it well. It discloses that the tool scrapes candidate pages, verifies images via HTTP, deduplicates near-identical crops, maintains a TTL disk cache, and returns a status field. It does not cover rate limits or failure modes, but the core behavior is clearly described.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with bold section headers: summary, usage conditions, example queries, and return fields. It is appropriately sized and front-loaded; every section adds meaningful guidance without verbose filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a web-extraction tool with four parameters and an output schema, the description covers the workflow, return format, and example invocations. It could better disambiguate from the sibling tool get_product_images_tool, but the provided detail is sufficient for an agent to call it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description adds value with concrete example queries showing how to pass product names, URLs, max_images, and site_filter, which reinforces the schema's documentation without being redundant.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states a specific verb and resource: 'Universally extracts verified, high-resolution product photography and official sources across the web.' It also conveys a distinct approach (automatic discovery, HTTP verification, deduplication) that differentiates it from generic scrapers, though it doesn't explicitly name or contrast sibling tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The 'USE THIS TOOL WHEN' section explicitly lists the scenarios for using this tool: needing product photos, packshots, visual references, or master CDN assets. It also describes the automatic discovery and verification behavior. It does not state exclusions or alternatives, but the context is clear enough for an agent to select it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_product_images_toolD
Backward-compatible alias for fetch_product_images.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | ||
| max_images | No | ||
| site_filter | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| query | Yes | Search query or URL requested |
| title | No | Title of the matched product or primary page |
| images | No | Array of high-resolution image URLs |
| status | Yes | 'success' or 'error' |
| error_message | No | Error message if scraping failed |
| sources_scraped | No | URLs or domains scraped |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description bears the full burden of behavioral disclosure — and it says nothing about behavior. An alias claim implies identical behavior to fetch_product_images, but the description never states what that behavior is: no filtering semantics, no read-only guarantee, no output format, no side effects.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The text is a single, well-front-loaded sentence with no waste. However, its brevity is achieved at the expense of substantive content — it conveys a single fact (alias target) and nothing else, so conciseness is not paired with information density.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite having an output schema (which excuses return-value explanation), the tool still needs to explain its behavior and parameters. With 3 undocumented parameters, no annotations, and zero behavioral description, an agent cannot reliably decide to call it or construct valid arguments. The alias reference defers all meaningful context to an unseen sibling.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0% and the description mentions none of the three parameters (query, max_images, site_filter). The schema itself contains no descriptions and no enums, so the agent is left with bare type information and defaults, with zero guidance on semantics — including what query expects or how site_filter behaves.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states only that it is an alias for fetch_product_images, never that it retrieves product images. The actual function must be inferred from the tool name and the sibling's identity. This is a meta-description referencing another tool rather than a description of the tool's own purpose — close to a tautology of the name.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description identifies fetch_product_images as the canonical target but gives no guidance on when to call this alias versus the canonical tool, nor any information on how it relates to search_product_urls or scrape_single_url. No context is given on preferred use cases.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
scrape_single_urlA
Extracts high-resolution product imagery from a single direct product URL (Extraction only).
USE THIS TOOL WHEN:
You already have an exact product URL (from search_product_urls or user input) and want to extract master photos strictly from that page.
Uses universal Schema.org JSON-LD, OpenGraph, dynamic JS datasets, DOM selectors, and CDN upscalers.
EXAMPLE CALL:
scrape_single_url(url="https://www.apple.com/iphone-16-pro/")
RETURNS:
ProductImageResult containing extracted images and metadata from the specified URL.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Direct web URL of the product detail page to extract images from. Example: 'https://www.apple.com/iphone-16-pro/' or 'https://www.bhphotovideo.com/c/product/1624226-REG/sony_ilme_fx3_fx3_cinema_line_camera.html' | |
| no_cache | No | If True, bypasses disk cache and scrapes live. | |
| max_images | No | Maximum images to extract from this specific page. Default is 10. |
Output Schema
| Name | Required | Description |
|---|---|---|
| query | Yes | Search query or URL requested |
| title | No | Title of the matched product or primary page |
| images | No | Array of high-resolution image URLs |
| status | Yes | 'success' or 'error' |
| error_message | No | Error message if scraping failed |
| sources_scraped | No | URLs or domains scraped |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It adds context by stating 'Extraction only' (read-only behavior) and listing the technical methods (JSON-LD, OpenGraph, dynamic JS datasets, DOM selectors, CDN upscalers), which implies JavaScript execution and network requests. It does not mention rate limits or auth, but for a scraping tool with a clear read-only hint, this is meaningful.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured and front-loaded with the core purpose, followed by brevity in 'when to use', a concrete example, and expected return. Every section earns its place, with no filler or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the output schema exists, return values are covered. The description provides usage context, source of URLs, and technical methods. It lacks error handling details or edge-case behavior, but for a simple scraping tool, it is reasonably complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description does not add meaning beyond the schema; the example call illustrates a valid URL but does not clarify parameter semantics further. The schema already documents each parameter adequately.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific verb 'Extracts' and the resource 'high-resolution product imagery from a single direct product URL', which distinguishes it from sibling tools like search_product_urls that search for URLs. The 'Extraction only' parenthetical further clarifies its scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The 'USE THIS TOOL WHEN' section explicitly states the condition: when the user already has an exact product URL. It references search_product_urls as a source, providing context, but does not explicitly name alternatives to use instead when the condition is not met. It is clear but lacks explicit when-not guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_product_urlsA
Discovers and ranks candidate e-commerce product pages for a given query (Discovery only).
USE THIS TOOL WHEN:
You want to find authoritative product detail pages (PDPs) across retailers without downloading or scraping images yet.
You want to preview which stores/URLs exist for a product before selecting one to scrape.
EXAMPLE CALL:
search_product_urls(query="Sony FX3 Cinema Camera", max_urls=3)
search_product_urls(query="MacBook Pro M3", site_filter="apple.com")
RETURNS:
A list of ranked, direct product destination URLs.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Product name or keywords to search for. Example: 'Sony FX3 camera', 'Nike Air Jordan 1' | |
| max_urls | No | Maximum candidate product URLs to return (1-10). Default is 5. | |
| site_filter | No | Optional specific domain to restrict search results to (e.g. 'bhphotovideo.com', 'apple.com') |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of disclosing behavior. It clearly states 'Discovery only,' explains that it does not download or scrape images, and notes that it returns 'ranked' URLs — this goes beyond the mere title and gives the agent expectations about side effects and output ordering. It doesn't cover rate limits or auth, but these are less critical for a discovery-only read operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with clear headings and short bullet sections. It front-loads the core purpose in one sentence, and every section (why, examples, returns) earns its place without redundant wording or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple three-parameter discovery tool with complete schema documentation and an output schema, the description is sufficient for an agent to select and invoke it correctly. It gives purpose, usage context, concrete examples, and a clear statement of the return type, so no critical information is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents each parameter's meaning and example values. The description adds example calls showing how query, max_urls, and site_filter are combined, but this does not materially extend the parameter semantics beyond what the schema provides. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The first sentence states a specific action and target: 'Discovers and ranks candidate e-commerce product pages for a given query (Discovery only).' It clearly identifies this as a discovery/preview tool rather than a scraping tool, and distinguishes it from siblings like fetch_product_images and scrape_single_url by explicitly noting it does not download or scrape images.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The 'USE THIS TOOL WHEN' section provides clear use cases: finding authoritative PDPs and previewing URLs before scraping. This effectively implies when not to use it (when you need images or actual page content), though it never names sibling alternatives directly or states explicit exclusions. The example calls further clarify how to invoke it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
4 tool updates
v1.0.0- First observed
fetch_product_images - First observed
get_product_images_tool - First observed
scrape_single_url - First observed
search_product_urls
TDQS
Scored across 4 tools
The three primary tools have clearly distinct purposes: fetch_product_images performs full discovery and scraping, search_product_urls only finds URLs, and scrape_single_url extracts images from a provided URL. The fourth tool is explicitly marked as a backward-compatible alias, so no genuine ambiguity exists.
The main tools follow a verb_noun pattern (fetch_product_images, search_product_urls, scrape_single_url), but the alias get_product_images_tool breaks the pattern by using 'get' and a '_tool' suffix. This is a minor deviation, as the alias is clearly labeled and does not detract from the overall predictability.
With only 4 tools, the server is well-scoped. Each core tool serves a distinct stage in the product image retrieval workflow (discovery, extraction, combined pipeline), and the alias is a harmless addition. The count fits comfortably within the ideal range.
The tool surface completely covers the domain: it offers discovery-only (search_product_urls), extraction-only (scrape_single_url), and a comprehensive pipeline (fetch_product_images). There are no obvious dead ends or missing operations for the stated purpose of retrieving product images.
Maintenance
Related MCP Connectors
AI-agent product catalog: search, lookup & purchase routing over verified merchant data.
Product discovery for AI agents: ranked products and bundles from the open merchant web.
Product search for AI agents: Amazon + Shopify, cart-to-checkout buy path. Pay-per-call, no API key.
Agentic commerce gateway: discovery, search, checkout across Shopify/Woo/Odoo/PrestaShop.
Related MCP Servers
- AlicenseAqualityDmaintenanceKlarna-style product discovery for AI shopping agents. Makes product catalogs machine-readable so AI agents can search, compare, and purchase products programmatically.6MIT
- FlicenseNot gradedqualityCmaintenanceEnables AI agents to perform web searches, extract webpage content, and conduct end-to-end search-and-extract operations using multiple search providers and content extraction methods.-
- FlicenseNot gradedqualityDmaintenanceEnables AI agents to browse product catalogs, search products with filters, and initiate checkouts, generating order summaries and checkout URLs.-

Periskop MCP Serverofficial
AlicenseNot gradedqualityCmaintenanceEnables AI agents to perform product discovery from natural language shopping intents, returning ranked products with merchant links without completing checkout.MIT