MyFlohmarkt
독일 플리마켓(Flohmarkt) 행사를 텍스트, 도시, 날짜 범위 또는 반경으로 검색하기 위한 읽기 전용 원격 MCP 서버입니다. 도구: search_events, get_event, recently_updated_events. 엔드포인트: https://mcp.my-flohmarkt.de/mcp (Streamable HTTP, 인증 없음).
문서
myFlohmarkt MCP server
Public, read-only MCP server for German flea markets — Flohmarkt, Trödelmarkt, Hofflohmarkt, Kinderflohmarkt, Nachtflohmarkt, Antik- und Sammlermarkt — from the catalogue behind my-flohmarkt.de.
https://mcp.my-flohmarkt.de/mcp
- Transport: Streamable HTTP (
POST). The server is stateless — no session id to carry between calls.GETreturns405: there is no SSE stream, because the server sends no server-initiated notifications. - Authentication: none. Every tool is read-only and public.
- Protocol: negotiates up to revision
2025-11-25, falls back to whatever the client asks for. - Registry:
de.my-flohmarkt/flea-market-catalogin the official MCP registry, namespace verified by DNS.
This repository holds documentation and examples. It is not the server's
source code, and it deliberately keeps no copy of server.json: the registry
link above serves the current metadata, so there is nothing here to go stale.
Tools
All three declare an outputSchema and answer with structuredContent
alongside the text block, so a client gets a typed result rather than a JSON
string to parse. All are annotated readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false.
search_events
Search by free text, by city or postal code (PLZ) through the same city
argument, by date range, or by radius around a coordinate.
| argument | type | notes |
|---|---|---|
query | string | free text, ≤ 200 chars |
city | string | city name or PLZ, ≤ 100 chars |
dateFrom, dateTo | string | YYYY-MM-DD |
lat, lng, radiusKm | number | all three required together, radius ≤ 100 km |
limit | integer | 1–50, default 10 |
Returns { items, total, totalIsLowerBound, dataAsOf }. Each item carries
id, title, date, timeFrom, timeTo, plz, city, lat, lng,
marketType, imageUrl, updatedAt and url — the public event page.
get_event
Full detail for one event by its UUID, as returned in the id field of the
other two tools: description, street address, opening times, market type and
topics, entrance fee and seller stand fee, stand sizes and table rental, and
whether sellers can still sign up. Unknown or non-public UUIDs return
{ "error": "not_found" }.
recently_updated_events
The most recently added or changed events, newest first. Use it to see what is
new without a query; use search_events when you know the city, PLZ, dates or
area.
Connect
Claude Code:
claude mcp add --transport http myflohmarkt https://mcp.my-flohmarkt.de/mcp
Any client that reads mcp.json (VS Code, Cursor, …):
{
"servers": {
"myflohmarkt": {
"type": "http",
"url": "https://mcp.my-flohmarkt.de/mcp"
}
}
}
Raw JSON-RPC, no client required — see examples/.
Without MCP
The same catalogue is served as plain REST for clients that do not speak MCP:
GET https://mcp.my-flohmarkt.de/events/search?city=Hamburg&limit=10
Machine-readable context for agents lives at llms.txt and llms-full.txt; the REST contract is in openapi.json.
Limits and freshness
- 1200 requests per minute per IP, 32 concurrent. Over the limit the server
answers
429with aretry-afterheader. - Under heavy load a tool may answer
{ "error": "duckdb_query_overloaded", "retryAfterSeconds": n }instead of blocking — retry after that many seconds. - Answers come from a catalogue snapshot refreshed hourly. Every list result
carries
dataAsOfso you can see how fresh the data is. Coverage and methodology: datenstand.
Privacy
The server needs no account and sets no cookies. Request telemetry stores a salted HMAC hash of the client IP (truncated), never the raw address, and only a classification of the user agent — not the raw header. Query text and tool arguments are not logged. Full policy: Datenschutz.
Stability and versioning
Tool names and their arguments are a public contract and are treated as write-once: they are never renamed or given a new required argument. Changes are additive — a new optional argument, a new field in a result — so a client written against today's tools keeps working.
The version you can observe is serverInfo.version from initialize, and it
matches the version published in the registry, which is where the
machine-readable metadata lives:
https://registry.modelcontextprotocol.io/v0.1/servers/de.my-flohmarkt%2Fflea-market-catalog/versions/latest
Breaking anything in that contract would mean a new tool alongside the old one, not a silent change to the existing one.
Links
- Website: my-flohmarkt.de · FAQ
- Legal: Impressum · AGB
- Issues with the server: open an issue here.