# Kleinanzeigen Mcp Server

> An MCP server for kleinanzeigen

- **Type:** MCP server
- **Install:** `agentstack add mcp-similicious-kleinanzeigen-mcp-server`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [similicious](https://agentstack.voostack.com/s/similicious)
- **Installs:** 0
- **Category:** [Integrations](https://agentstack.voostack.com/c/integrations)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [similicious](https://github.com/similicious)
- **Source:** https://github.com/similicious/kleinanzeigen-mcp-server

## Install

```sh
agentstack add mcp-similicious-kleinanzeigen-mcp-server
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# Kleinanzeigen MCP Server

A Model Context Protocol (MCP) server that provides tools to interact with [Kleinanzeigen](https://www.kleinanzeigen.de/). 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](https://github.com/DanielWTE/ebay-kleinanzeigen-api)

## Installation

1. Clone this repository:

   ```bash
   git clone https://github.com/similicious/kleinanzeigen-mcp-server.git
   cd kleinanzeigen-mcp-server
   ```

2. Install dependencies:

   ```bash
   npm install
   ```

## Available Tools

### 1. search

Search for listings on Kleinanzeigen.

#### Parameters:

- `query` (required): Search term
- `zipCode` (optional): ZIP code for location-based search
- `radius` (optional): Search radius in kilometers
- `minPrice` (optional): Minimum price filter
- `maxPrice` (optional): Maximum price filter

#### Example:

```javascript
// 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:

```javascript
// 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:

```json
{
  "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](https://github.com/similicious)
- **Source:** [similicious/kleinanzeigen-mcp-server](https://github.com/similicious/kleinanzeigen-mcp-server)
- **License:** MIT

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/mcp-similicious-kleinanzeigen-mcp-server
- Seller: https://agentstack.voostack.com/s/similicious
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
