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
Crevio

2 days ago
Ssumcp
@hoeongj

์ˆญ์‹ค๋Œ€ํ•™๊ต์˜ ๋ชจ๋“  ๊ณต๊ฐœ/๊ฐœ์ธ ์ •๋ณด ์ œ๊ณต๊ณผ ์ž๋™ํ™” ์—์ด์ „ํŠธ ๊ธฐ๋Šฅ์„ MCP ํ‘œ์ค€ ๋„๊ตฌ๋กœ ์ œ๊ณตํ•˜์—ฌ ๊ณต๊ฐœ ์„œ๋ฒ„ ์ง€์†์ ์œผ๋กœ ์—…๋ฐ์ดํŠธ ๋ฐ ๊ธฐ๋Šฅ ์ถ”๊ฐ€ ์ค‘์ž…๋‹ˆ๋‹ค ๊ณต๊ฐœ ๋„๊ตฌ โ€ขํ•™์‹ - ํ•™์ƒ์‹๋‹นยท๋„๋‹ด์‹๋‹นยท๊ธฐ์ˆ™์‚ฌ(๋ ˆ์ง€๋˜์Šคํ™€)๋“ฑ ๋ชจ๋“  ์‹๋‹น ๋ฉ”๋‰ด ๋ฐ ์‹๋‹น์ •๋ณด โ€ข์‹œ์„ค - ์บ ํผ์Šค ๋‚ด ์นดํŽ˜ยทํŽธ์˜์ ยท๋ณต์‚ฌ ๋“ฑ ๊ฒ€์ƒ‰ โ€ข๋„์„œ๊ด€ - ์ขŒ์„ ์‹ค์‹œ๊ฐ„ ์กฐํšŒ / ๋„์„œ ๊ฒ€์ƒ‰ โ€ข๊ณต์ง€์‚ฌํ•ญ - ์ตœ์‹  ๊ณต์ง€ ๋ชฉ๋กยทํ‚ค์›Œ๋“œ๊ฒ€์ƒ‰ยทํ•™๊ณผ๋ณ„๊ณต์ง€ ๋“ฑ ๊ฐœ์ธ ๋„๊ตฌ ์š”์ฒญ์‹œ ๋กœ๊ทธ์ธ URL์„ ๋ฐ›์•„ ํ•œ ๋ฒˆ ๋กœ๊ทธ์ธํ•˜๋ฉด ์ดํ›„ ๋ชจ๋“  ๊ฐœ์ธ ๋„๊ตฌ๋ฅผ ์‚ฌ์šฉ ๊ฐ€๋Šฅ โ€ขu-SAINT - ์‹œ๊ฐ„ํ‘œ, ์„ฑ์ , ์ฑ„ํ”Œ ์ •๋ณด, ์กธ์—…์š”๊ฑด, ์žฅํ•™๊ธˆ ๋‚ด์—ญ ๋“ฑ โ€ขLMS - ํ˜„์žฌ ํ•™๊ธฐ ๋ฏธ์ œ์ถœ ๊ณผ์ œยทํ€ด์ฆˆ๋ชฉ๋ก ๋“ฑ โ€ข๋„์„œ๊ด€ - ๋Œ€์ถœ ํ˜„ํ™ฉ ๋ฐ ๋ฐ˜๋‚ฉ ๊ธฐํ•œ(์˜ˆ์•ฝ ํ˜„ํ™ฉ ๋ฐ ์˜ˆ์•ฝ ์ž๋™ํ™” ์—์ด์ „ํŠธ ๋„์ž… ์˜ˆ์ •) ๋Œ€ํ™” ์˜ˆ์‹œ ๋‚˜ ์กธ์—…ํ•˜๋ ค๋ฉด ์–ด๋–ค ์กฐ๊ฑด๋“ค์ด ๋‚จ์•˜์–ด? ๋„์„œ๊ด€ 6์ธต ์ฐฝ๊ฐ€์ชฝ ๋นˆ์ž๋ฆฌ ์žˆ์œผ๋ฉด ์˜ˆ์•ฝํ•ด์ค˜ ์žฅํ•™๊ธˆ ๊ด€๋ จ ๊ณต์ง€์‚ฌํ•ญ ์ฐพ์•„์ค˜

5 hours ago
AI Work Market โ€” USDC settlement rails for AI labor on Base Mainnet)
@Dario (DME)

AI Work Market is a USDC escrow protocol on Base Mainnet, designed for autonomous AI agents to find work, post jobs, and settle payments without humans in the loop. This MCP server exposes 10 tools: **Escrow lifecycle** - `create_intent_quote` โ€” get calldata + gas estimate for funding a new escrow intent - `submit_proof_quote` โ€” get calldata for the seller to submit a proof URI - `release_funds_quote` โ€” get calldata for the buyer to release payment (or claim/refund) **x402 single-call binding** - `x402_consume` โ€” replaces the 5-step x402 flow with one HMAC-signed POST that returns a delivery URL **Onboarding & discovery** - `agent_onboard` โ€” generate a signed agent card with marketplace attestation - `agent_search` โ€” tf-idf search over the live agent catalog - `agent_reputation` โ€” server-side reputation from on-chain Released/Refunded/Disputed events **Live state** - `system_status` โ€” live on-chain state (nextIntentId, accumulatedFees, contract balance, owner) - `escrow_rules` โ€” contract semantics, lifecycle, call guides, failure modes - `events_subscribe` โ€” SSE stream of new on-chain intent events All endpoints are serverless (Vercel) and return their schema on GET. No browser, no wallet UI required for an agent to integrate. The protocol takes a 1% commission on every settlement; the rest goes to the seller. The full AgentCard is at `/.well-known/agent-card.json` (A2A-compatible). The OpenAPI 3.0.3 spec is at `/.well-known/openapi.json` with `components.securitySchemes` (none, hmacX402). `robots.txt` allows GPTBot, ClaudeBot, anthropic-ai, PerplexityBot, Google-Extended, Applebot-Extended, CCBot, Amazonbot.

5 hours ago