Install
$ agentstack add mcp-similicious-kleinanzeigen-mcp-server ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Kleinanzeigen MCP Server
A Model Context Protocol (MCP) server that provides tools to interact with Kleinanzeigen. This server enables AI assistants to search for listings and retrieve detailed information about specific listings from Kleinanzeigen.
Prerequisites
- Node.js (v16 or higher recommended)
- A running instance of the DanielWTE/ebay-kleinanzeigen-api
Installation
- Clone this repository:
``bash git clone https://github.com/similicious/kleinanzeigen-mcp-server.git cd kleinanzeigen-mcp-server ``
- Install dependencies:
``bash npm install ``
Available Tools
1. search
Search for listings on Kleinanzeigen.
Parameters:
query(required): Search termzipCode(optional): ZIP code for location-based searchradius(optional): Search radius in kilometersminPrice(optional): Minimum price filtermaxPrice(optional): Maximum price filter
Example:
// Search for "iphone" in ZIP code 12345 with a 10km radius and price between 200 and 500
{
"query": "iphone",
"zipCode": "12345",
"radius": 10,
"minPrice": 200,
"maxPrice": 500
}
2. get_listing
Retrieve detailed information about a specific listing.
Parameters:
id(required): The ID of the listing
Example:
// Get details for listing with ID "2363153061"
{
"id": "2363153061"
}
Response Format
Both tools return responses in JSON format with detailed information about the listings.
Integration with AI Assistants
This MCP server is designed to be used with AI assistants that support the Model Context Protocol. When connected, the assistant can use the provided tools to search for listings and retrieve detailed information.
Example configuration in an AI assistant:
{
"mcp_servers": {
"kleinanzeigen": {
"command": "node",
"args": ["/path/to/kleinanzeigen-mcp-server/src/index.mjs"],
"env": {
"API_BASE_URL": "http://your-api-host:port"
}
}
}
}
This example shows how to configure the MCP server in your AI assistant's configuration file. Replace /path/to/kleinanzeigen-mcp-server/src/index.mjs with the actual path to the server script and http://your-api-host:port with the URL where your Kleinanzeigen API is running.
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: similicious
- Source: similicious/kleinanzeigen-mcp-server
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.