marktplaats-mcp
marktplaats-mcp is an MCP server that lets AI agents search and browse Marktplaats (Netherlands) and 2dehands (Belgium) second-hand classifieds without any account or API key.
Search listings (
search_listings): Search for ads using free text, category, price range, item condition (new, as-good-as-new, used, refurbished, not working), distance from a postal code, recency, sorting (relevance, date, price, location), and pagination — on either marktplaats.nl or 2dehands.be.Get full listing details (
get_listing_details): Retrieve a complete ad including the full description, all photos, view/favorite counts, listing age, seller info, and item attributes.Check seller trustworthiness (
get_seller_profile): Look up a seller's trust signals — verified bank account, identity, and phone number — plus their review score and review count.Browse categories (
list_categories): Explore the full category tree (top-level and subcategories) to find names and IDs for use in search filters.Monitor new listings (
check_new_listings): Poll for listings posted after a specific timestamp (ISO 8601), using a stateless cursor to incrementally check only genuinely new ads; paid promotions are filtered out by default.
Provides tools for GitHub Copilot to search Marktplaats and 2dehands listings, retrieve listing details and seller profiles, browse categories, and monitor new listings.
Provides tools for JetBrains IDEs (AI Assistant / Junie) to search Marktplaats and 2dehands listings, retrieve listing details and seller profiles, browse categories, and monitor new listings.
Provides tools for OpenAI Codex CLI to search Marktplaats and 2dehands listings, retrieve listing details and seller profiles, browse categories, and monitor new listings.
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., "@marktplaats-mcpsearch for OLED TV under €400 near 3011 AB"
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.
marktplaats-mcp
marktplaats-mcp is an MCP server that lets Claude, Cursor, Codex, opencode and every other MCP client search Marktplaats and 2dehands, the Dutch and Belgian second-hand classifieds. Find bargains, vet sellers, browse categories and monitor new listings in plain language.
✨ Features
🔍 Powerful search: free text, categories, price range, condition, distance from a postal code, recency, sorting
🇳🇱🇧🇪 Two marketplaces, one server: marktplaats.nl (Netherlands) and 2dehands.be (Belgium) via a
siteparameter📄 Full listing details: complete description, all photos, view and favorite counts, listing age
🛡️ Seller vetting: verified bank account, identity and phone, review score
🔔 New-listing monitoring: poll for ads placed after a timestamp with a stateless cursor
🧠 Built for LLMs: compact token-efficient output, paid promotions filtered out, structured results, pagination hints
🔁 Resilient: retries with exponential backoff, jitter and
Retry-Afterhandling🔓 No account, no API key
Related MCP server: Begagnad MCP
🚀 Quickstart
The only prerequisite is uv (brew install uv or curl -LsSf https://astral.sh/uv/install.sh | sh).
Claude Code, one command:
claude mcp add marktplaats -- uvx marktplaats-mcpThen ask: "Search Marktplaats for an OLED TV under €400 near 3011 AB."
🌐 Use on claude.ai (no install)
You can skip the terminal entirely. A hosted copy of this server runs at https://marktplaats-mcp.jaspnerd.dev/mcp, ready to plug into claude.ai in your browser or the Claude mobile app. Custom connectors work on every Claude plan, including Free.
Open claude.ai and go to Settings → Connectors.
Click Add custom connector.
Paste
https://marktplaats-mcp.jaspnerd.dev/mcpas the URL and click Add. No account or key needed.Ask Claude: "Search Marktplaats for an OLED TV under €400 near 3011 AB."
The hosted endpoint runs the same code as the PyPI package, rate-limited per client. If you'd rather have requests come from your own machine, install it locally below.
📦 Install in your favorite client
Every config runs the same stdio server via uvx marktplaats-mcp.
Add to claude_desktop_config.json (macOS: ~/Library/Application Support/Claude/, Windows: %APPDATA%\Claude\), then fully restart Claude Desktop:
{
"mcpServers": {
"marktplaats": {
"command": "uvx",
"args": ["marktplaats-mcp"]
}
}
}If Claude Desktop can't find uvx, use the absolute path (which uvx, e.g. /Users/you/.local/bin/uvx).
Add to ~/.codex/config.toml:
[mcp_servers.marktplaats]
command = "uvx"
args = ["marktplaats-mcp"]Or: codex mcp add marktplaats -- uvx marktplaats-mcp
Add to opencode.json:
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"marktplaats": {
"type": "local",
"command": ["uvx", "marktplaats-mcp"],
"enabled": true
}
}
}Add to ~/.cursor/mcp.json (global) or .cursor/mcp.json (project):
{
"mcpServers": {
"marktplaats": {
"command": "uvx",
"args": ["marktplaats-mcp"]
}
}
}Add to .vscode/mcp.json (note the servers key and explicit type):
{
"servers": {
"marktplaats": {
"type": "stdio",
"command": "uvx",
"args": ["marktplaats-mcp"]
}
}
}Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"marktplaats": {
"command": "uvx",
"args": ["marktplaats-mcp"]
}
}
}Add to ~/.gemini/settings.json:
{
"mcpServers": {
"marktplaats": {
"command": "uvx",
"args": ["marktplaats-mcp"]
}
}
}Settings → Tools → AI Assistant → Model Context Protocol (MCP) → Add:
{
"mcpServers": {
"marktplaats": {
"command": "uvx",
"args": ["marktplaats-mcp"]
}
}
}🧰 Tools
Tool | What it does |
| Search with query, category, price range, condition, distance, recency, sorting and pagination |
| Full ad: complete description, all images, view and favorite counts, listing age |
| Trust signals: verified bank, identity and phone, review score and count |
| Browse the category tree (names + ids) used for filtering |
| Newest-first monitoring with a stateless cursor: returns only ads placed after |
All five tools are read-only and carry the matching MCP annotations, so clients skip the confirmation prompts.
Example prompts
"Find a second-hand iPhone 15 under €600 in as-good-as-new condition, sorted by price."
"Search 2dehands for a bakfiets within 20 km of postcode 2000 Antwerpen."
"Is seller 12345 trustworthy? Check their profile."
"Check for new 'vintage lamp' listings since my last check and summarize the interesting ones."
❓ FAQ
Does this need a Marktplaats account or API key? No. It uses the same public JSON endpoints the website itself uses.
Is this an official Marktplaats product? No. This is an independent open source project with no ties to Marktplaats or Adevinta. The underlying API is undocumented and may change. The server backs off politely on rate limits; keep your own usage reasonable.
Why do I sometimes see fewer results than the limit?
Paid promotions (DAGTOPPER/TOPADVERTENTIE) are filtered out by default. Pass include_sponsored=true if you want them.
Which Python versions are supported? 3.10 and up. CI tests 3.11 through 3.13 on Linux, macOS and Windows.
🗺️ Roadmap
Persistent saved searches with price-drop detection
Notifications (Discord/Telegram/ntfy via Apprise)
Authenticated tools (your messages, favorites and bids)
Docker image + Docker MCP Catalog
🤝 Contributing
PRs welcome. See CONTRIBUTING.md for the dev setup: uv sync --all-groups, then uv run pytest.
This project reuses proven ideas from marktplaats-py, marktplaats-monitor, marktplaats-2dehands-mcp and PonClick/marktplaats-mcp. Details in THIRD_PARTY_NOTICES.md.
📄 License
MIT © 2026 jasp-nerd
mcp-name: io.github.jasp-nerd/marktplaats-mcp
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
- Flicense-qualityDmaintenanceEnables AI assistants to interact with New Zealand's largest online marketplace through the Trade Me API. Supports searching listings, managing watchlists, placing bids, making purchases, and accessing marketplace data across all Trade Me categories.Last updated4
- Flicense-qualityDmaintenanceEnables AI agents to search and retrieve listings from Sweden's largest second-hand marketplaces, Blocket and Tradera. Returns unified data including prices, images, seller information, and direct links to listings.Last updated7
- Alicense-qualityDmaintenanceEnables AI assistants to search eBay listings, track item prices over time, and identify deals below market value using eBay's APIs. It provides tools for category browsing and retrieving detailed information for specific listings.Last updated1MIT
- AlicenseAqualityCmaintenanceEnables AI assistants to search secondhand marketplaces (Facebook Marketplace, eBay, Depop, Poshmark) for used items with filters like price, condition, size, and color.Last updated317239MIT
Related MCP Connectors
Search products in nearby stores. Agents can also list items for sale on a user's behalf.
AI-agent search API: Google, YouTube, Amazon, Reddit, TikTok, TikTok Shop, Instagram, X, LinkedIn
Search and discover advertiser products through an open marketplace for AI agents.
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/jasp-nerd/marktplaats-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server