vinted-mcp-server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@vinted-mcp-serversearch for vintage Levi's jeans under €50"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
vinted-mcp-server
A Model Context Protocol (MCP) server for interacting with the Vinted marketplace. Enables AI assistants to search, browse, and discover second-hand items on Vinted.
Features
Search items — Full-text search with filters (price, brand, size, color, condition, sort)
Item details — Full item info including description, photos, seller profile, and condition
User profiles — Seller ratings, reviews, item counts, and activity
User items — Browse all items listed by a specific user
Brand search — Find brand IDs for use in search filters
Rate limiting — Token bucket rate limiter to avoid API bans
Caching — In-memory LRU cache with TTL for fast repeated queries
Retry logic — Exponential backoff for transient errors
Session management — Puppeteer-based with Cloudflare bypass
Token-efficient — Concise markdown responses optimized for LLM consumption
Quick Start
Prerequisites
Node.js 20+
Using npx (zero-install)
This server communicates via stdio (JSON-RPC) and is designed to be launched by an MCP client, not run directly in a terminal. Configure it in your MCP client as shown below.
Install from source
git clone https://github.com/Rbillon59/vinted-mcp-server.git
cd vinted-mcp-server
npm install
npm run buildUsage with Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"vinted": {
"command": "npx",
"args": ["@rbillon59/vinted-mcp-server"],
"env": {
"VINTED_DOMAIN": "www.vinted.fr"
}
}
}
}{
"mcpServers": {
"vinted": {
"command": "node",
"args": ["/absolute/path/to/vinted-mcp-server/dist/index.js"],
"env": {
"VINTED_DOMAIN": "www.vinted.fr"
}
}
}
}Usage with Claude Code CLI
Add to your Claude Code settings (~/.claude/settings.json or project .mcp.json):
{
"mcpServers": {
"vinted": {
"command": "npx",
"args": ["@rbillon59/vinted-mcp-server"],
"env": {
"VINTED_DOMAIN": "www.vinted.fr"
}
}
}
}Usage with Cursor
Add to .cursor/mcp.json in your project:
{
"mcpServers": {
"vinted": {
"command": "npx",
"args": ["@rbillon59/vinted-mcp-server"]
}
}
}Usage with Docker
docker build -t vinted-mcp-server .
docker run -i --rm -e VINTED_DOMAIN=www.vinted.fr vinted-mcp-serverAvailable Tools
search_items
Search the Vinted catalog with filters.
Parameter | Type | Default | Description |
| string | (required) | Search text (e.g., "nike air max", "robe vintage") |
| number | 1 | Page number |
| number | 20 | Results per page (max: 96) |
| string | "relevance" | Sort: |
| number | — | Minimum price filter |
| number | — | Maximum price filter |
| string | — | Brand IDs (comma-separated) |
| string | — | Size IDs (comma-separated) |
| string | — | Color IDs (comma-separated) |
| string | — | Category IDs (comma-separated) |
| string | — | Condition: |
get_item_details
Get detailed information about a specific item.
Parameter | Type | Description |
| number | The Vinted item ID (from search results) |
Returns: title, price, description, brand, size, condition, colors, seller info (rating, location), photos, stats (views, favorites).
get_user_profile
Get a seller's profile information.
Parameter | Type | Description |
| number | The Vinted user ID (from search results or item details) |
Returns: username, rating, review breakdown, items listed/sold, location, member since, last active.
get_user_items
Browse all items listed by a specific user.
Parameter | Type | Default | Description |
| number | (required) | The Vinted user ID |
| number | 1 | Page number |
| number | 20 | Results per page |
search_brands
Search for brand names and get their IDs for use in search filters.
Parameter | Type | Description |
| string | Brand name to search (e.g., "Nike", "Zara") |
Configuration
Environment Variable | Default | Description |
|
| Vinted domain (e.g., |
| — | Custom Chrome/Chromium path for Puppeteer |
|
| Timeout for Cloudflare challenge resolution (ms) |
Supported Domains
Domain | Country |
| France |
| Germany |
| Spain |
| Italy |
| Netherlands |
| Belgium |
| Poland |
| Portugal |
| Lithuania |
| Czech Republic |
| United Kingdom |
Architecture
src/
index.ts # Entry point, stdio transport
server.ts # MCP server config & tool registration
tools/
search.ts # search_items tool
item.ts # get_item_details tool
user.ts # get_user_profile tool
user-items.ts # get_user_items tool
brands.ts # search_brands tool
api/
client.ts # HTTP client (session, cache, rate limit, retry)
session-provider.ts # Browser-based session (Cloudflare bypass)
browser-utils.ts # Shared Puppeteer/stealth utilities
types.ts # Vinted API response types
utils/
cache.ts # TTL cache with LRU eviction
rate-limiter.ts # Token bucket rate limiter
mcp-error.ts # Shared MCP error response builderReliability Features
Rate limiting: Token bucket (10 req/10s) prevents API bans
Caching: LRU cache (3min TTL, 200 entries max) reduces redundant requests
Retry: Exponential backoff (1s, 2s) on 429/5xx errors
Session recovery: Automatic cookie refresh on 401/403 with request coalescing
Request deduplication: Concurrent identical requests share a single API call
Cloudflare bypass: Puppeteer with stealth plugin for session acquisition
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Rbillon59/vinted-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server