Marktplaats MCP Server

Search Marktplaats and 2dehands: listings, sellers, categories and new-listing monitoring.

Remote serverstreamable-httpPython

What is the Marktplaats MCP server?

Connect Marktplaats to Claude, Cursor or any other MCP client and it stops being a tab you switch to. Search Marktplaats and 2dehands: listings, sellers, categories and new-listing monitoring. The marktplaats mcp server is what makes that connection.

What the server does

The only prerequisite is uv (brew install uv or curl -LsSf https://astral.sh/uv/install.sh | sh).

Installation

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • search_listings — Search with query, category, price range, condition, distance, recency, sorting and pagination
  • get_listing_details — Full ad: complete description, all images, view and favorite counts, listing age
  • get_seller_profile — Trust signals: verified bank, identity and phone, review score and count
  • list_categories — Browse the category tree (names + ids) used for filtering
  • check_new_listings — Newest-first monitoring with a stateless cursor: returns only ads placed after since

Worth knowing first

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Where it fits

Plenty of monitoring and observability servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Marktplaats's toolset — search_listings, get_listing_details, get_seller_profile and 2 more — is a fair guide to whether it matches your workflow. It is maintained by jasp-nerd; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Available tools

ToolWhat it does
search_listingsSearch with query, category, price range, condition, distance, recency, sorting and pagination
get_listing_detailsFull ad: complete description, all images, view and favorite counts, listing age
get_seller_profileTrust signals: verified bank, identity and phone, review score and count
list_categoriesBrowse the category tree (names + ids) used for filtering
check_new_listingsNewest-first monitoring with a stateless cursor: returns only ads placed after since

How to install the Marktplaats MCP server

{
  "mcpServers": {
    "marktplaats": {
      "command": "uvx",
      "args": ["marktplaats-mcp"]
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Example prompts to try

  • Use Marktplaats to search listings.
  • Use Marktplaats to get listing details.
  • Use Marktplaats to get seller profile.

Frequently asked questions

It connects Marktplaats to MCP-compatible AI assistants such as Claude and Cursor, exposing 5 tools (search_listings, get_listing_details, get_seller_profile, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Marktplaats directly.