How to Use the Vestiaire Collective MCP in LangChain
Build multi-step fashion workflows for Vestiaire Collective using LangChain.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Vestiaire Collective MCP to LangChain
Create your Vinkius account to connect Vestiaire Collective to LangChain and route execution through our secure gateway. The platform manages server hosting, runtime updates, and security layers. Configuration requires no manual server provisioning.
Multi-Step Luxury Search
Start with a broad search, then narrow it down. You can use `search_luxury_items` to find general keywords like 'Chanel tweed,' and then immediately pipe that list of results into `get_item_details`. This chain lets you quickly pull specific data points—like the item's condition, material, or if it matches a certain size—on every single result found. This is perfect for building complex research agents. The agent won't just call one tool; it’ll decide to first run `list_catalog_categories`, then use that output in conjunction with `search_by_brand` to give you a highly filtered list of available goods.
Price Trend Analysis
Want to know if an item's current price is accurate? Your agent can run `list_available_brands` first, and then pass the selected brand name into `analyze_price_trends`. This shows you how a specific luxury category has valued up or down recently. The chain also lets you verify inventory. You can call `list_my_selling_items` to see what's currently listed in your closet, and then use that list of item IDs as context when researching market value using the price trends tool.
Catalog Mapping
This server gives you a complete picture of the marketplace. You can start by calling `list_catalog_categories` to see if shoes, bags, or accessories are available. Next, run `list_available_designers` to narrow the focus down to specific creators. Then, your agent combines those results: it takes a designer's name and feeds it into the advanced filtering tools—specifically `search_with_advanced_filters`—to pull only items matching that profile. It’s all one continuous reasoning path.
Set up Vestiaire Collective MCP in LangChain
Prerequisites
- Python 3.10+ installed
-
langchain-mcp-adapters+langgraphpackages - Active Vinkius subscription with a valid endpoint token
- 1
Install dependencies
Run
pip install langchain-mcp-adapters langgraph langchain-openai. The MCP adapters package converts MCP tools into native LangChainBaseToolobjects. - 2
Connect via HTTP transport
Use
MultiServerMCPClientwith"transport": "http"pointing to your Vinkius endpoint. Replace[YOUR_TOKEN_HERE]with your token from cloud.vinkius.com. - 3
Create a ReAct agent
Pass the discovered tools to
create_react_agent()from LangGraph. The agent automatically routes Vestiaire Collective tool calls through the MCP protocol. - 4
Run with any LLM
Swap
ChatOpenAIforChatAnthropic,ChatGoogleGenerativeAI, or any LangChain-compatible model. The MCP tools work identically across all providers.
from langchain_mcp_adapters.client import MultiServerMCPClient
from langgraph.prebuilt import create_react_agent
from langchain_openai import ChatOpenAI
async with MultiServerMCPClient({
"vestiaire-collective-mcp": {
"transport": "http",
"url": "https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp",
}
}) as client:
tools = client.get_tools()
agent = create_react_agent(
ChatOpenAI(model="gpt-4o"),
tools,
)
result = await agent.ainvoke({
"messages": "List recent Vestiaire Collective transactions"
})
print(result["messages"][-1].content) Independent Platform Disclaimer: Vinkius is an independent platform and is not affiliated with, endorsed by, sponsored by, verified by, or otherwise authorized by Vestiaire Collective. All third-party trademarks, logos, and brand names are the property of their respective owners. Their use on this website is strictly for informational purposes to identify service compatibility and interoperability.
Why Choose Vinkius
Vinkius connects your tools to AI with real-time monitoring and automatic cost savings — all from one dashboard.
Real-time monitoring
Live
visibility into every interaction
Connect your favorite tools to your AI and see exactly what's happening — every request, every response, in real time.
Built-in savings
60%
lower AI costs
Vinkius compresses data between your apps and your AI automatically. Lower bills every month — no configuration required.
Single dashboard
One
place for every integration
Every tool your AI connects to, managed from a single screen. One account, complete control.
Common questions about Vestiaire Collective MCP in LangChain
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the Vestiaire Collective MCP today
We host it, we monitor it, we maintain it. You just paste one token.