Skip to main content
Glama

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

pip install promas
playwright install chromium

Run 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 --> Return

3. Why Promas? (Comparison)

Feature

Raw Scripts (BeautifulSoup, Puppeteer)

Paid APIs (Bright Data, ScrapingBee)

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:

  1. Free / Default (Zero Setup): Promas uses its built-in Playwright Stealth browser engine to discover e-commerce candidates via Bing and DuckDuckGo for free.

  2. Brave Search API (Recommended for Production): If BRAVE_API_KEY is set, Promas switches to official, ToS-compliant, sub-second API discovery.

  3. SerpAPI (Alternative): If SERPAPI_API_KEY is set, Promas queries Google Search via SerpAPI.

    • Get a free key (100 free queries/month): SerpAPI

Environment Variables Reference:

Variable

Default

Description

BRAVE_API_KEY

None

Optional API key for Brave Search

SERPAPI_API_KEY

None

Optional API key for SerpAPI Google Search

PROMAS_GLOBAL_CONCURRENCY

3

Max simultaneous browser contexts

PROMAS_PER_DOMAIN_CONCURRENCY

1

Max concurrent requests per target store

PROMAS_DOMAIN_DELAY_SECONDS

0.5

Polite delay between requests to the same domain

PROMAS_CACHE_ENABLED

True

Toggle disk caching (True/False)

PROMAS_CACHE_TTL_SECONDS

86400 (24h)

Cache expiration time in seconds

PROMAS_ENABLE_IMAGE_VERIFICATION

True

Async HTTP MIME & pixel dimension check

PROMAS_ENABLE_PERCEPTUAL_DEDUP

True

pHash near-duplicate crop removal

PROMAS_PHASH_HAMMING_THRESHOLD

4

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.com

Bypass Cache or Disable Verification:

promas "Nike Air Jordan 1" --no-cache --no-verify

B. FastMCP Server

Run the standalone MCP server:

promas-mcp

C. 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

fetch_product_images

Full Pipeline

Query string or URL -> Automated discovery -> Parallel scrape -> HTTP validation -> pHash dedup -> Master photo links.

search_product_urls

Discovery Only

Query string -> Fast ranking of candidate e-commerce product pages (returns URLs without scraping images).

scrape_single_url

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. `![Product Photo](url)`) 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.json config and prompt examples for Cursor Composer.

  • 🦜🔗 LangChain: Structured @tool wrapper 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-integration

  • 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 tools
fetch_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:

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+)

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesThe 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_cacheNoIf True, bypasses the TTL disk cache and forces a live scrape.
max_imagesNoMaximum number of verified, high-resolution master product images to return (1-20). Default is 10.
site_filterNoOptional domain to restrict the product search to (e.g. 'apple.com', 'nike.com', 'bhphotovideo.com', 'amazon.com').

Output Schema

ParametersJSON Schema
NameRequiredDescription
queryYesSearch query or URL requested
titleNoTitle of the matched product or primary page
imagesNoArray of high-resolution image URLs
statusYes'success' or 'error'
error_messageNoError message if scraping failed
sources_scrapedNoURLs or domains scraped

TDQS

A4.1/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters4/5

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.

Purpose4/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYes
max_imagesNo
site_filterNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
queryYesSearch query or URL requested
titleNoTitle of the matched product or primary page
imagesNoArray of high-resolution image URLs
statusYes'success' or 'error'
error_messageNoError message if scraping failed
sources_scrapedNoURLs or domains scraped

TDQS

D1.7/5.0
Behavior1/5

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.

Conciseness3/5

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.

Completeness1/5

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.

Parameters1/5

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.

Purpose2/5

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.

Usage Guidelines2/5

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:

RETURNS:

  • ProductImageResult containing extracted images and metadata from the specified URL.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesDirect 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_cacheNoIf True, bypasses disk cache and scrapes live.
max_imagesNoMaximum images to extract from this specific page. Default is 10.

Output Schema

ParametersJSON Schema
NameRequiredDescription
queryYesSearch query or URL requested
titleNoTitle of the matched product or primary page
imagesNoArray of high-resolution image URLs
statusYes'success' or 'error'
error_messageNoError message if scraping failed
sources_scrapedNoURLs or domains scraped

TDQS

A4.2/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesProduct name or keywords to search for. Example: 'Sony FX3 camera', 'Nike Air Jordan 1'
max_urlsNoMaximum candidate product URLs to return (1-10). Default is 5.
site_filterNoOptional specific domain to restrict search results to (e.g. 'bhphotovideo.com', 'apple.com')

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.3/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

  1. 4 tool updatesv1.0.0
    • First observedfetch_product_images
    • First observedget_product_images_tool
    • First observedscrape_single_url
    • First observedsearch_product_urls

TDQS

B3.4/5.0

Scored across 4 tools

Disambiguation5/5

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.

Naming Consistency4/5

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.

Tool Count5/5

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.

Completeness5/5

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

ActivityMaintained
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers