Skip to content
LangChain

Shopify & eBay Product Scraper & Extractor for LangChain

com.ranovam/shopify-ebay-product-research

Shopify and eBay product scraper & extractor for fast market research. Pulls Shopify products.

client:LangChain transport:streamable-http

Install Shopify & eBay Product Scraper & Extractor in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "shopify-ebay-product-research": {
            "transport": "streamable_http",
            "url": "https://mcp.apify.com?tools=enezli/shopify-ebay-product-research",
        }
})

tools = await client.get_tools()

get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs

Shopify & eBay Product Scraper & Extractor in other clients