kleinanzeigen-mcp for VS Code
io.github.taneron/kleinanzeigen
Search Kleinanzeigen.de, Germany's largest classifieds site, for second-hand listings
client:VS Code
transport:stdio
runtime:npm
Install kleinanzeigen-mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "willmehr-mode",
"description": "WILLMEHR_MODE",
"password": true
},
{
"type": "promptString",
"id": "kz-min-interval-ms",
"description": "KZ_MIN_INTERVAL_MS",
"password": true
},
{
"type": "promptString",
"id": "kz-max-page-count",
"description": "KZ_MAX_PAGE_COUNT",
"password": true
},
{
"type": "promptString",
"id": "kz-max-batch-size",
"description": "KZ_MAX_BATCH_SIZE",
"password": true
},
{
"type": "promptString",
"id": "tz",
"description": "TZ",
"password": true
}
],
"servers": {
"kleinanzeigen": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"kleinanzeigen-mcp"
],
"env": {
"WILLMEHR_MODE": "${input:willmehr-mode}",
"KZ_MIN_INTERVAL_MS": "${input:kz-min-interval-ms}",
"KZ_MAX_PAGE_COUNT": "${input:kz-max-page-count}",
"KZ_MAX_BATCH_SIZE": "${input:kz-max-batch-size}",
"TZ": "${input:tz}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs