Add vinted-mcp-server — First Vinted Marketplace MCP Server

Created By
kazkn4 months ago
🛍️ Vinted MCP Server — The first Model Context Protocol server for Vinted, Europe's #1 second-hand marketplace (50M+ users). 🔍 SEARCH — Find items across 19 countries with filters: brand, size, price range, condition. Sort by relevance, price, or date. 💰 COMPARE PRICES — Cross-country price comparison for arbitrage detection. Same item: €31 in Italy vs €51 in Germany = 61% margin. 👤 ANALYZE SELLERS — Full seller profiles: ratings, verification status, followers, items sold, response time. 📈 TRENDING — Discover what's hot right now: most favorited items by category and country. 📦 5 Tools: search_items, get_item, get_seller, compare_prices, get_trending 📚 2 Resources: countries (19), categories 🌍 Countries: FR, DE, ES, IT, NL, BE, AT, UK, PT, PL, CZ, LT, LU, HU, SK, RO, HR, FI, DK ⚡ Zero config. Works with Claude Desktop, Cursor, Windsurf, Cline, and any MCP client. 📦 Install: npx -y vinted-mcp-server Built by kazkn — also available as Apify Actor for cloud/batch processing: apify.com/kazkn/vinted-smart-scraper Keywords: vinted scraper, vinted API, second-hand marketplace, price comparison, fashion reseller tools, thrift shopping AI, cross-country arbitrage
Overview

vinted-mcp-server

1.0.1 • Public • Published

🛍️ Vinted MCP Server — Search, Compare Prices & Analyze Sellers

npm version License: MIT

The first MCP server for the Vinted marketplace. Give your AI assistant the power to search 800M+ listings, compare prices across 19 countries, and analyze seller profiles — all through the Model Context Protocol.

Works with Claude Desktop, Cursor, Windsurf, Cline, and any MCP-compatible client.


⚡ Quick Start

Option 1: npx (zero install)

{
  "mcpServers": {
    "vinted": {
      "command": "npx",
      "args": ["-y", "vinted-mcp-server"]
    }
  }
}

Option 2: Global install

npm install -g vinted-mcp-server

Then add to your MCP client config:

{
  "mcpServers": {
    "vinted": {
      "command": "vinted-mcp-server"
    }
  }
}

🔧 Client Configuration

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "vinted": {
      "command": "npx",
      "args": ["-y", "vinted-mcp-server"]
    }
  }
}

Cursor

Settings → MCP Servers → Add:

{
  "mcpServers": {
    "vinted": {
      "command": "npx",
      "args": ["-y", "vinted-mcp-server"]
    }
  }
}

🛠️ Tools (5)

search_items

Search Vinted listings with powerful filters.

ParameterTypeDescription
querystringSearch keywords (required)
countrystringCountry code — fr, de, uk, it, es, nl, pl, pt, be, at, lt, cz, sk, hu, ro, hr, fi, dk, se
priceMinnumberMinimum price
priceMaxnumberMaximum price
brandIdsnumber[]Filter by brand IDs
categoryIdnumberVinted category ID
conditionstring[] new_with_tags, new_without_tags, very_good, good, satisfactory
sortBystring relevance, price_low_to_high, price_high_to_low, newest_first
limitnumberMax results (up to 100)

Example prompt: "Search for Nike Air Max on Vinted France under 50€, sort by price"


get_item

Get full details for a specific Vinted item by ID.

ParameterTypeDescription
itemIdnumberVinted item ID (required)
countrystringCountry code

Example prompt: "Get details for Vinted item 4283719503"


get_seller

Analyze a Vinted seller's profile, ratings, and recent items.

ParameterTypeDescription
sellerIdnumberVinted seller ID (required)
countrystringCountry code

Example prompt: "Show me the profile of seller 12345678 on Vinted Germany"


compare_prices

Compare prices for an item across multiple Vinted countries.

ParameterTypeDescription
querystringSearch keywords (required)
countriesstring[]Countries to compare (default: all)
limitnumberItems per country

Example prompt: "Compare prices for 'Levi's 501' across France, Germany, and Italy"


Discover trending items on Vinted.

ParameterTypeDescription
countrystringCountry code
categoryIdnumberOptional category filter
limitnumberNumber of trending items

Example prompt: "What's trending on Vinted Netherlands right now?"


📚 Resources (2)

vinted://countries

Returns the full list of 19 supported Vinted countries with domain, currency, and language info.

vinted://categories

Returns the Vinted category tree for filtering searches.


🌍 Supported Countries (19)

CodeCountryCurrency
frFranceEUR
deGermanyEUR
ukUnited KingdomGBP
itItalyEUR
esSpainEUR
nlNetherlandsEUR
beBelgiumEUR
atAustriaEUR
plPolandPLN
ptPortugalEUR
ltLithuaniaEUR
czCzech RepublicCZK
skSlovakiaEUR
huHungaryHUF
roRomaniaRON
hrCroatiaEUR
fiFinlandEUR
dkDenmarkDKK
seSwedenSEK

💡 Use Cases

  • 🛒 AI Shopping Assistant — "Find me a winter jacket under 30€ in good condition"
  • 📊 Price Analysis — "What's the average price for PS5 controllers across Europe?"
  • 💰 Arbitrage — "Find items priced lower in Poland that I can buy from France"
  • 👤 Seller Research — "Is this seller trustworthy? Show me their ratings and history"
  • 📈 Trend Watching — "What's trending in fashion on Vinted Germany?"

Looking for programmatic scraping at scale? Check out the Vinted Smart Scraper on Apify — same engine, cloud-scale.


📄 License

MIT © KazKN

Server Config

{
  "mcpServers": {
    "vinted": {
      "command": "npx",
      "args": [
        "-y",
        "vinted-mcp-server"
      ]
    }
  }
}
Project Info
Created At
4 months ago
Updated At
3 months ago
Author Name
kazkn
Star
-
Language
-
License
-
Category

Recommend Servers

View All
Bring your real authenticated browser session to AI coding agents. Local-first MCP server + Chrome MV3 extension. No cloud. No telemetry.
@Cubenest

peek records the user's actual logged-in browser (DOM via rrweb, console events, network metadata, optional response bodies via opt-in Deep capture) through a Chrome MV3 extension. The extension ships events through a native-messaging stdio bridge to a local MCP server (peek-mcp), which persists them to a SQLite database at ~/.peek/sessions.db. AI coding agents (Claude Code, Cursor, Cline, Windsurf) read sessions from the database via 10 MCP tools: Tool What it does list_recent_sessions List recently recorded sessions (id, origin, ts, event count). get_session_summary LLM-readable narrative summary of a session. get_session_console_errors Console errors recorded in a session. get_session_network_errors Failed/notable network requests in a session. get_user_action_before_error Last N user actions before a console error. generate_playwright_repro Generate a runnable Playwright test from a session. get_dom_snapshot Reconstruct the DOM at a given timestamp. query_dom_history Timeline of attribute/text changes for a selector. request_authorization Side-panel consent for write actions (Level 3). execute_action Dispatch a UI action (gated by permission level + destructive blocklist). Why local-first matters Every other "browser session for AI" tool ships to a vendor cloud. peek's SQLite + extension live on the user's machine — no remote endpoints, no telemetry. The privacy policy (docs/peek/PRIVACY_POLICY.md) is the source of truth. Install # 1. Add the MCP server to Claude Code claude mcp add peek -- npx -y @peekdev/mcp # 2. Install the Chrome extension from the Chrome Web Store # (link added once the CWS listing is approved)

a day ago
Crevio

2 days ago