apify-product-data-setup

apify-product-data-setup is a skill for Claude Code from apify/awesome-skills. It costs 132 tokens per session (1,836 once invoked), scanned A, original, Apache-2.0.

A setup guide for connecting an AI agent to current retailer product data through Apify. It covers live lookups through MCP and scheduled catalogue refreshes through an API.

In plain words
What is it for?
Use it to configure product-data calls, refresh a vector-store catalogue on a schedule, or connect an agent in Claude, Cursor, or n8n.
Why use it?
It helps prevent stale answers about prices, stock, brands, ratings, and images by choosing between checking an item now and keeping a searchable catalogue updated.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions Claude Code.

Part of the awesome-skills plugin — 19 skills shipped together

Good fit Use it to configure product-data calls, refresh a vector-store catalogue on a schedule, or connect an agent in Claude, Cursor, or n8n.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/apify/awesome-skills/apify-product-data-setup
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add apify/awesome-skills --skill apify-product-data-setup
Clone the repo
git clone --depth 1 https://github.com/apify/awesome-skills

Made for: Claude Code.

Or install awesome-skills, the plugin that ships this one along with the rest of its 19 skills.

Its marketplace also offers this one on its own, as the plugin apify-product-data-setup/plugin install apify-product-data-setup after adding the marketplace above.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for apify-product-data-setup

README.md
[![agentmods](https://agentmods.dev/badge/skills/apify/awesome-skills/apify-product-data-setup/github.svg)](https://agentmods.dev/skills/apify/awesome-skills/apify-product-data-setup)
Your own site
<a href="https://agentmods.dev/skills/apify/awesome-skills/apify-product-data-setup"><img src="https://agentmods.dev/badge/skills/apify/awesome-skills/apify-product-data-setup/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for apify-product-data-setup

Your own site · 80×15
<a href="https://agentmods.dev/skills/apify/awesome-skills/apify-product-data-setup"><img src="https://agentmods.dev/badge/skills/apify/awesome-skills/apify-product-data-setup.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 132 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,836 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00132 $0.01836
Opus 5 $0.00066 $0.00918
Sonnet 5 $0.00026 $0.00367
Haiku 4.5 $0.00013 $0.00184

Measured today against content hash f2787e44e656, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

apify-product-data-setup scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured today.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

skills/apify-product-data-setup/SKILL.md · 109 lines

How it starts

The opening of the file, as written. The whole thing — 109 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Apify product data setup

Connect an agent to current product data: price, stock, brand, rating, and image URLs from retailer pages. Nothing to host.

Written by a product marketing manager at Apify. It routes to E-commerce Scraping Tool, a paid first-party Apify Actor, so treat the framing accordingly. No affiliate links.

Choose the path first

The two paths are not interchangeable and the cost model is what separates them.

Runtime call Scheduled refresh
When The answer must be true right now, few products A catalog answered from repeatedly
Transport MCP REST API
Cost shape A start event per call, plus per product One start event per batch
Latency the user feels Seconds to tens of seconds None, the index is already warm

Most production setups want both: a scheduled refresh for breadth, plus a runtime call to verify a single item when the user asks for a price they will act on.

A cron job gains nothing from MCP, so the scheduled path uses the REST API. Say so when explaining the design, because the mismatch looks like an oversight otherwise.

Connect over MCP

The server is https://mcp.apify.com. Narrow it to this Actor with ?tools=apify/e-commerce-scraping-tool, which makes tool selection more reliable when product data is the only job. Drop the parameter to let the agent search all of Apify Store at runtime.

Config blocks per client are in references/clients.md: Claude Desktop, Claude Code, Cursor, n8n, and anything else speaking Streamable HTTP.

Authentication: OAuth on first use for interactive clients, a bearer token from Apify Console for unattended ones.

Encode the fetch flow

Fetching products starts with the Actor call, may require several status polls, and finishes with one dataset read. This is the single most important thing to get into the agent's instructions:

  1. apify--e-commerce-scraping-tool returns run metadata and a datasetId. No products.
  2. If status is not terminal, poll get-actor-run with the validated runId until it succeeds or a caller-defined deadline expires. Treat FAILED, ABORTED, and TIMED-OUT as failures. The Actor tool returns when its own wait window elapses rather than when the run finishes, so RUNNING is a normal answer and the dataset is empty at that moment.
  3. get-dataset-items returns the products. Pass fields in dot notation: the unprojected record measured about 88 KB across 142 fields, and projecting keeps that out of the context window.

Read the full file on GitHub · 109 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. today First seen · 109 lines · 132 tokens per session scan A f2787e44e656

Subscribe to this mod's changes

apify-product-data-setup is a skill published in the GitHub repository apify/awesome-skills (251 stars, last pushed today), licensed Apache-2.0. It adds 132 tokens to every session and 1,836 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-10.

Related

Other skills, from other repositories

apify-product-data-setup

Wire an AI agent to live e-commerce product data using Apify's E-commerce Scraping Tool over MCP, either as runtime tool calls or as a scheduled refresh into a vector store. Trigger on "give my agent live product data", "my agent quotes stale prices", "connect Apify MCP to Claude or Cursor or n8n", "add product data…

luispintoapify/ecommerce-agent-starter · 132 tokens

iterative-retrieval

Pattern for progressively refining context retrieval to solve the subagent context problem.

hashgraph-online/awesome-codex-plugins · 19 tokens

knowledge-graph-creation

Build structured knowledge graphs from unstructured text by extracting entities, mapping relationships, generating graph triples, and visualizing the result. Use when the user requests knowledge graph creation or provides relevant inputs for this workflow.

seb1n/awesome-ai-agent-skills · 47 tokens

context-retrieval

Retrieve relevant information from a knowledge base using semantic, keyword, or hybrid search to ground a query. Use when the task starts with a corpus or index that must be searched; use context-ranking when candidate chunks already exist and only need ordering.

seb1n/awesome-ai-agent-skills · 53 tokens

context-ranking

Rank an existing set of context chunks by relevance, diversity, freshness, and utility. Use when retrieval has already produced candidates that must be scored or reranked; use context-retrieval when the source corpus still needs to be searched.

seb1n/awesome-ai-agent-skills · 50 tokens

langchain

LangChain skill for building LLM orchestration, agents, RAG pipelines, tools, memory, callbacks, and deployment.

Bilal140202/the-lord-of-the-skills · 28 tokens