Vinted MCP and CLI Server
Provides tools for searching listings, fetching items and sellers, comparing prices across countries, and retrieving trending feeds on the Vinted marketplace.
🛍️ Vinted MCP & CLI Server
Give your AI assistant access to Vinted — search, compare prices, and track sellers across 19 countries.
The idea
Vinted has no public API. This package bridges that gap — it lets AI assistants talk directly to Vinted via the Model Context Protocol.
Connect it to Claude, Cursor, or any MCP-compatible assistant and just ask:
"Find me a North Face jacket under €60 in Germany, good condition or better"
"Compare prices for Air Jordan 1s across France, Italy and the UK"
"What is seller #123456 currently selling? Anything under €20?"
The AI figures out which filters to use, calls Vinted, and gives you a real answer — no searching, no filtering, no tabs.
Also ships as a CLI tool and TypeScript library for direct use.
Related MCP server: Heim MCP
What is this?
An MCP server, CLI tool, and TypeScript library for the Vinted secondhand marketplace. No official API — it bootstraps a session cookie from the public catalog page and calls the private JSON API the Vinted web app uses internally.
🤖 MCP server — plug into Claude, Cursor, or any AI assistant with MCP support
🖥️ CLI tool — pipe results, watch for new listings, compare prices from your terminal
📦 TypeScript library — import
opSearch,opCompare, etc. directly in your code
Install
npm install -g @googlarz/vinted-clientOr run without installing:
npx @googlarz/vinted-client search "levis 501"CLI Quick Start
# Search (JSON by default)
vinted search "levi's 501" --country fr
# Pretty table
vinted search "levi's 501" --country de --output table
# Filter by price, brand, condition
vinted search "adidas samba" \
--price-min 20 --price-max 80 \
--brand adidas \
--condition new_with_tags,very_good \
--output table
# Watch for new listings every 30s
vinted search "air jordan 1" --watch 30
# Walk all pages and collect up to 500 results
vinted search "vintage denim" --all --max-items 500
# Get a specific item (ID or URL)
vinted item 1234567
vinted item https://www.vinted.fr/items/1234567
# Seller profile + active listings
vinted seller 987654
vinted seller-items 987654 --output table
# Cross-country price comparison (6 countries by default)
vinted compare "north face jacket" --output table
# Browse category tree
vinted categories --query shoes --output table
# Look up brand IDs
vinted brands "stone island"
# What's trending right now
vinted trending --country fr --output tableCommands
Command | Description |
| Search listings with full filter support |
| Get full item detail |
| Seller profile |
| Items a seller has for sale |
| Price comparison across countries |
| Look up brand IDs by name |
| Browse the category tree |
| Newest / trending listings |
| Inspect session cookies (for troubleshooting) |
Global flags
Flag | Description |
| Output format (default: |
| Country code (see below) |
| HTTP/HTTPS proxy (also: |
| Disable response cache |
Search flags
Flag | Description |
| Price range |
| Brand names (auto-resolved to IDs) |
| Comma-separated brand IDs |
| Category ID ( |
| Comma-separated size IDs |
|
|
|
|
| Date range filter (YYYY-MM-DD) |
| Walk pages and collect all results |
| Cap for |
| Poll every N seconds for new listings (default 60s) |
Supported Countries
fr de uk it es nl pl pt be at lt cz sk hu ro hr fi dk se
MCP Server
Drop Vinted into any MCP-compatible AI assistant (Claude, Cursor, etc.).
Setup — Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"vinted": {
"command": "npx",
"args": ["-y", "@googlarz/vinted-client/mcp"]
}
}
}Setup — Claude Code
claude mcp add vinted -- npx -y @googlarz/vinted-client/mcpMCP Tools
Tool | Description |
| Search with full filter support |
| Item detail by ID or URL |
| Seller profile |
| Active listings for a seller |
| Multi-country price comparison |
| Trending listings |
| Brand lookup |
| Category tree |
Example prompts once connected:
"Find me Nike Air Max 95s under €70 in Germany, size 43, very good condition"
"Compare prices for a North Face puffer jacket across France, Germany and Italy"
"Watch seller #987654 and tell me when they list something under €30"
Library Usage
import { VintedClient, opSearch, opCompare, opSearchAll } from '@googlarz/vinted-client';
const client = new VintedClient();
// Basic search
const results = await opSearch(client, {
query: 'levi\'s 501',
country: 'de',
priceMax: 50,
condition: ['very_good', 'good'],
sortBy: 'price_low_to_high',
});
console.log(results.items);
// Collect all pages concurrently (3-page prefetch window)
const all = await opSearchAll(client, {
query: 'vintage band tee',
country: 'uk',
maxItems: 300,
});
// Multi-country price comparison
const report = await opCompare(client, {
query: 'air jordan 1 retro',
countries: ['fr', 'de', 'uk', 'it'],
});Client options
const client = new VintedClient({
proxyUrl: 'http://proxy:8080', // or VINTED_PROXY_URL env var
cacheTtlMs: 60_000, // response cache TTL (0 = disable)
rateLimitPerSec: 3, // requests/sec per country
rateLimitBurst: 6, // burst capacity
timeoutMs: 20_000, // per-request timeout
});How it works
Vinted has no public API. This library:
Bootstraps a session by hitting
vinted.{cc}/catalogand capturing the auth cookies the Vinted frontend sets.Calls the private JSON API (
/api/v2/...) with those cookies, mimicking browser request headers.Re-bootstraps automatically on 401 — tokens expire, the library recovers silently.
Rate-limits per country with a token bucket (configurable burst + refill) to avoid 429s.
Caches responses with LRU+TTL — 60s for search results, 1h for static data like categories.
Falls back to HTML scraping for item pages blocked by DataDome (JSON-LD + regex extraction).
Prefetches 3 pages concurrently in
opSearchAllto maximise throughput within the rate-limit budget.
Proxy support
If Vinted blocks your IP (common on cloud VMs and CI), set a proxy:
VINTED_PROXY_URL=http://user:pass@proxy:8080 vinted search "nike"
# or
vinted search "nike" --proxy http://user:pass@proxy:8080Standard HTTPS_PROXY / HTTP_PROXY env vars are also respected.
Environment variables
Variable | Description |
| HTTP/HTTPS proxy URL |
| Cache TTL in ms (default |
| Requests per second per country (default |
| Token bucket burst size (default |
| Set to |
Requirements
Node.js ≥ 18
Optional:
playwright+puppeteer-extra-plugin-stealthfor--browser/VINTED_BROWSER=1mode
License
MIT © googlarz
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityFmaintenanceThis MCP scraps vinted for product info. Disclaimer: This script is designed for educational purposes only. It is intended to demonstrate web scraping techniques and should not be used for any commercial or personal gain. Please note that using this software may violate the terms of service of VintLast updated137GPL 3.0
- AlicenseAqualityCmaintenanceA MCP server do create and deploy backend applications using https://heim.devLast updated6363MIT
- AGPL 3.0
- AlicenseBqualityDmaintenanceMCP Server for crafty controllerLast updated63282GPL 3.0
Related MCP Connectors
An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform
MCP server for Google Veo AI video generation
Official remote MCP server for Color Me Shop.
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/googlarz/vinted-mcp-cli'
If you have feedback or need assistance with the MCP directory API, please join our Discord server