Mtg argentina stores
Claude Code skills for shopping MTG sealed product in Argentina — store lookup, full-catalog scraping, ARS/USD price verification
npx -y skills add rodrijuarez/mtg-argentina-skills --skill mtg-argentina-storesAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Search Argentine MTG retailers for a specific sealed product (Collector Display, Play Booster Box, Bundle, Commander Deck, etc.) and report stock + prices across stores, normalized to USD. Use when the user asks "where can I get X in Argentina?", "what stores have Y in stock?", or wants to find the cheapest source for a sealed product.
SKILL.md
8.6 KB, as published. Nobody here has run it
MTG Argentina Stores — Stock & Price Search
Searches the known list of Buenos Aires / Argentina MTG retailers to find availability and prices for a specific sealed product, then ranks by best Argentine deal.
When to use
- User asks "where can I find X in Argentina?"
- User wants the cheapest Argentine source for a sealed product
- User wants to compare prices across multiple Argentine stores
- User is hunting a specific Collector/Play Display or Bundle
What to ask first
- Exact product name and edition (e.g., "EOE Collector Booster Box", "SOS Codex Bundle", "MH3 Play Booster Box")
- Acceptable price ceiling (so you can pre-filter results)
- Current ARS/USD exchange rate (Argentine peso moves fast — never assume from memory)
- Whether the user needs it NOW or can wait for restock (some stores like Rancho TCG have anomalously low prices but are often out)
Known Argentine MTG retailers
Priority sealed-product URLs
These are the direct sealed-inventory category pages that return real prices via WebFetch. Hit these FIRST when searching for sealed products:
| Store | Sealed category URL | Cash/Transfer discount | Notes |
|---|---|---|---|
| Rancho Store TCG | https://ranchostoretcg.com.ar/categoria-producto/magic/ | 10% cash / 5% transfer | BEST prices when in stock, often limited stock. Prices already reflect cash discount. |
| Al Battle TCG | https://albattletcg.com/magic/booster-box1/ | ~14% bank transfer | Preorder model, % off varies per product (4-25%) |
| Magic Dealers Store | https://www.magicdealersstore.com/catalog/magic_the_gathering_productos_sellados/15111 | Negotiable in-store | WPN Premium, Belgrano. |
| La Batikueva Store | https://www.labatikuevastore.com (browse by set in nav) | ~5% cash | Most consistent stock. Product pages are JS-rendered — may need direct product URL, not category page |
| Phoenix Reborn | https://phoenixreborn.com.ar/inicio/mtg/ | Variable | Often returns 403 on WebFetch — manual browser check recommended |
Full retailer list
| Store | URL | Notes |
|---|---|---|
| La Batikueva Store | https://www.labatikuevastore.com | Most consistent stock, fair markups (~5% cash discount), Buenos Aires |
| Magic Dealers Store | https://www.magicdealersstore.com | Singles specialist + WPN Premium, Belgrano |
| Magic Lair | https://www.lair.com.ar | Good sealed selection, multiple pages |
| Phoenix Reborn | https://phoenixreborn.com.ar | Often blocks WebFetch (403); prices verified manually |
| Rancho Store TCG | https://ranchostoretcg.com.ar | BEST prices when in stock (10% cash off); often out of stock |
| Al Battle TCG | https://albattletcg.com | Decent prices, bank transfer discount; uses preorder model |
| Tolaria Shop | https://www.tolariashop.com | Higher prices typically; uses USD pricing |
| El Refugio Regalos | https://www.elrefugiostore.com.ar | Mixed inventory |
| Hadouken | https://hadouken.com.ar/354-magic | Smaller selection, higher prices |
| Polybius Store | https://www.polybiustore.com.ar/tcg/magic-the-gathering | Mostly single packs |
| ZTG Hardware | https://ztghardware.com.ar/magic-the-gathering | Mostly Play Booster Boxes |
| Morgana Store | https://www.morganastore.com.ar/trading-card-games-tcg/magic-the-gathering/booster-packs | Limited sealed |
| Valkyrya Productos | https://www.valkyryaproductos.com.ar | Limited MTG, broad product range |
| El Abismo de Helm | https://www.elabismodehelmwargames.ar/tcg/magic-the-gathering | Older sealed inventory |
| Bazaar of Baghdad | https://bazaarmtg.com | WPN Premium store, usually highest prices |
| Shibuya Comic Store | https://www.shibuyacomicstore.com.ar | TCG focus, some MTG |
| Invictvs | https://invictvs.com.ar/tienda/853-juegos-tcg-y-coleccionables | CABA, Rosario, Paraná locations |
| Mercado Libre | https://listado.mercadolibre.com.ar | Variable seller pricing; check seller ratings |
| MTGBSAS (ML store) | https://mtgbsas.mercadoshops.com.ar | Mercado Libre seller |
Process
Step 1 — confirm what the user wants
Get exact product name, edition, ideal price ceiling, and current ARS/USD exchange rate.
Step 2 — fetch from each store in parallel
Hit the 4 priority sealed URLs in parallel first (these return live prices reliably):
https://ranchostoretcg.com.ar/categoria-producto/magic/https://albattletcg.com/magic/booster-box1/https://www.magicdealersstore.com/catalog/magic_the_gathering_productos_sellados/15111https://www.labatikuevastore.com/categoria-producto/tcg/magic/(or specific product URL if known)
These category pages list multiple products with prices in a single fetch — much faster than per-product searches.
For Phoenix Reborn (often 403):
Try https://phoenixreborn.com.ar/inicio/mtg/ but expect failure. If it 403s, ask the user to check in browser and paste prices back.
For Mercado Libre listings:
Use search URL pattern: https://listado.mercadolibre.com.ar/<product-keywords>. ML often blocks WebFetch — use WebSearch with mercadolibre.com.ar domain filter as fallback.
WebFetch prompts should be specific to extract structured data:
"List each Magic sealed product on this page with: product name, exact ARS price, stock status (in stock / sin stock / out of stock), and any cash/bank-transfer discount % shown. Include all products visible."
Watch out for: Argentine peso prices use periods as thousand-separators (e.g., $300.000 ARS = three hundred thousand pesos, NOT three hundred dollars). Always interpret carefully.
Step 3 — convert ARS → USD
Use the user-provided exchange rate. Do not assume a rate from memory — Argentine peso moves weekly.
Apply discounts:
- 5-10% cash discount typical
- 14-16% bank transfer discount typical
- Promo % off appears on individual product pages
Step 4 — verify US reference price
Run mtg-sealed-price-check skill to get current US market price for the product, then calculate Argentine markup.
Step 5 — produce ranked report
# [PRODUCT] — Argentina Store Search Results (YYYY-MM-DD)
## IN STOCK
| Store | ARS Price | USD (after discount) | Markup vs US | Stock |
|-------|-----------|----------------------|--------------|-------|
| ... |
## OUT OF STOCK (best historical prices)
| Store | USD (cash) | Notes |
|-------|-----------|-------|
## Best deal: [Store name] at $[X]
## My recommendation: [...]
Step 6 — factor in time/shipping cost
If a cheaper store requires significant travel, factor in your own time cost (hourly rate × travel time). Sticker savings need to exceed this hidden cost to be worth the trip.
Always mention shipping options (most Argentine stores ship within CABA for ~$10-25 USD equivalent).
Common pitfalls
- Don't trust outdated prices from previous searches. Re-fetch each time; markets shift weekly.
- Verify "in stock" status — many Argentine stores list products that are perpetually "sin stock"
- Mercado Libre listings vary wildly — check seller's feedback (reputación) before buying
- Per-pack vs per-box confusion — a "$66,000 ARS Collector Booster" might be ONE pack, not 12. Always verify quantity.
- Some "Bundles" are scams in disguise — Scene Boxes have been priced at 5x MSRP. Cross-check with US market.
- Never assume exchange rate — Argentine peso has moved 30%+ in single months. Always ask user for current rate.
When the user asks about Secret Lair products
Secret Lair is direct-only from Wizards at MSRP, then secondary market.
- Argentine retailers rarely carry Secret Lair sealed
- Secondary market on TCGPlayer/eBay typically 2-4x MSRP for desirable sets
- Initial hype premium (4-6x MSRP) settles 4-6 weeks after release
- Don't pay scalper prices — wait for stabilization, or buy singles from the deck
What NOT to do
- Don't quote US prices from memory — always verify via mtg-sealed-price-check skill first
- Don't ignore stock status — listing a "great price" at a perpetually-out store wastes user's time
- Don't push purchase if all Argentine sources are >50% markup — sometimes "wait" is the right answer
- Don't recommend cross-border shipping bypass schemes — Argentine import tariffs are real