2,500+ MCP servers ready to use
Vinkius

Vestiaire Collective MCP Server for Mastra AI 9 tools — connect in under 2 minutes

Built by Vinkius GDPR 9 Tools SDK

Mastra AI is a TypeScript-native agent framework built for modern web stacks. Connect Vestiaire Collective through the Vinkius and Mastra agents discover all tools automatically — type-safe, streaming-ready, and deployable anywhere Node.js runs.

Vinkius supports streamable HTTP and SSE.

typescript
import { Agent } from "@mastra/core/agent";
import { createMCPClient } from "@mastra/mcp";
import { openai } from "@ai-sdk/openai";

async function main() {
  // Your Vinkius token — get it at cloud.vinkius.com
  const mcpClient = await createMCPClient({
    servers: {
      "vestiaire-collective": {
        url: "https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp",
      },
    },
  });

  const tools = await mcpClient.getTools();
  const agent = new Agent({
    name: "Vestiaire Collective Agent",
    instructions:
      "You help users interact with Vestiaire Collective " +
      "using 9 tools.",
    model: openai("gpt-4o"),
    tools,
  });

  const result = await agent.generate(
    "What can I do with Vestiaire Collective?"
  );
  console.log(result.text);
}

main();
Vestiaire Collective
Fully ManagedVinkius Servers
60%Token savings
High SecurityEnterprise-grade
IAMAccess control
EU AI ActCompliant
DLPData protection
V8 IsolateSandboxed
Ed25519Audit chain
<40msKill switch
Stream every event to Splunk, Datadog, or your own webhook in real-time

* Every MCP server runs on Vinkius-managed infrastructure inside AWS - a purpose-built runtime with per-request V8 isolates, Ed25519 signed audit chains, and sub-40ms cold starts optimized for native MCP execution. See our infrastructure

About Vestiaire Collective MCP Server

Connect your Vestiaire Collective seller account to any AI agent and take full control of your luxury resale business through natural conversation.

Mastra's agent abstraction provides a clean separation between LLM logic and Vestiaire Collective tool infrastructure. Connect 9 tools through the Vinkius and use Mastra's built-in workflow engine to chain tool calls with conditional logic, retries, and parallel execution — deployable to any Node.js host in one command.

What you can do

  • Luxury Search — Find authenticated luxury items from brands like Hermès, Chanel, Louis Vuitton, and Gucci with precision
  • Advanced Filters — Search by brand, category, condition, price range, color, and material to find exactly what you're looking for
  • Price Analysis — Analyze market trends and resale value for specific luxury brands and categories to optimize your pricing
  • Inventory Management — List and track your own selling items and dressing room status directly from your agent
  • Catalog Discovery — Browse available brands, designers, and categories within the vast Vestiaire Collective catalog
  • Authentication & Details — Retrieve full metadata for items including condition, price history vs. new, and material details

The Vestiaire Collective MCP Server exposes 9 tools through the Vinkius. Connect it to Mastra AI in under two minutes — no API keys to rotate, no infrastructure to provision, no vendor lock-in. Your configuration, your data, your control.

How to Connect Vestiaire Collective to Mastra AI via MCP

Follow these steps to integrate the Vestiaire Collective MCP Server with Mastra AI.

01

Install dependencies

Run npm install @mastra/core @mastra/mcp @ai-sdk/openai

02

Replace the token

Replace [YOUR_TOKEN_HERE] with your Vinkius token

03

Run the agent

Save to agent.ts and run with npx tsx agent.ts

04

Explore tools

Mastra discovers 9 tools from Vestiaire Collective via MCP

Why Use Mastra AI with the Vestiaire Collective MCP Server

Mastra AI provides unique advantages when paired with Vestiaire Collective through the Model Context Protocol.

01

Mastra's agent abstraction provides a clean separation between LLM logic and tool infrastructure — add Vestiaire Collective without touching business code

02

Built-in workflow engine chains MCP tool calls with conditional logic, retries, and parallel execution for complex automation

03

TypeScript-native: full type inference for every Vestiaire Collective tool response with IDE autocomplete and compile-time checks

04

One-command deployment to any Node.js host — Vercel, Railway, Fly.io, or your own infrastructure

Vestiaire Collective + Mastra AI Use Cases

Practical scenarios where Mastra AI combined with the Vestiaire Collective MCP Server delivers measurable value.

01

Automated workflows: build multi-step agents that query Vestiaire Collective, process results, and trigger downstream actions in a typed pipeline

02

SaaS integrations: embed Vestiaire Collective as a first-class tool in your product's AI features with Mastra's clean agent API

03

Background jobs: schedule Mastra agents to query Vestiaire Collective on a cron and store results in your database automatically

04

Multi-agent systems: create specialist agents that collaborate using Vestiaire Collective tools alongside other MCP servers

Vestiaire Collective MCP Tools for Mastra AI (9)

These 9 tools become available when you connect Vestiaire Collective to Mastra AI via MCP:

01

analyze_price_trends

Analyser les tendances de prix pour une marque et catégorie (valorisation du luxe)

02

get_item_details

Consulter un article : marque, état, authentification, prix vs. neuf, taille, matière

03

list_available_brands

Lister les marques de luxe disponibles (Hermès, Chanel, Louis Vuitton, Dior, etc.)

04

list_available_designers

Lister les créateurs et collections

05

list_catalog_categories

Lister les catégories (sacs, chaussures, vêtements, accessoires, bijoux, montres)

06

list_my_selling_items

Consulter les articles en vente dans votre dressing

07

search_by_brand

) et catégorie. Rechercher par marque de luxe et catégorie optionnelle

08

search_luxury_items

Fournissez une requête textuelle. Rechercher des articles de luxe par mots-clés (ex : "Hermès Birkin", "Chanel tweed")

09

search_with_advanced_filters

Fournissez les filtres sous forme de paramètres. Recherche avancée avec filtres multiples : marque, état, prix, couleur, matière, pays

Example Prompts for Vestiaire Collective in Mastra AI

Ready-to-use prompts you can give your Mastra AI agent to start working with Vestiaire Collective immediately.

01

"Search for vintage Hermès Birkin bags in very good condition under 15000 EUR."

02

"What is the current resale trend for Chanel Flap Bags?"

03

"List all items I currently have for sale."

Troubleshooting Vestiaire Collective MCP Server with Mastra AI

Common issues when connecting Vestiaire Collective to Mastra AI through the Vinkius, and how to resolve them.

01

createMCPClient not exported

Install: npm install @mastra/mcp

Vestiaire Collective + Mastra AI FAQ

Common questions about integrating Vestiaire Collective MCP Server with Mastra AI.

01

How does Mastra AI connect to MCP servers?

Create an MCPClient with the server URL and pass it to your agent. Mastra discovers all tools and makes them available with full TypeScript types.
02

Can Mastra agents use tools from multiple servers?

Yes. Pass multiple MCP clients to the agent constructor. Mastra merges all tool schemas and the agent can call any tool from any server.
03

Does Mastra support workflow orchestration?

Yes. Mastra has a built-in workflow engine that lets you chain MCP tool calls with branching logic, error handling, and parallel execution.

Connect Vestiaire Collective to Mastra AI

Get your token, paste the configuration, and start using 9 tools in under 2 minutes. No API key management needed.