Bazos-MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Bazos-MCPSearch for BMW 3 series on bazos.cz under 5000 EUR"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Bazos-MCP
MCP server for interacting with Bazos.cz, Bazos.sk, Bazos.at, and Bazos.pl.
Features
Search ads across all sections on Czech, Slovak, Austrian, and Polish Bazos.
Retrieve detailed ad information.
Fetch user ratings by phone/email ID.
Related MCP server: olx-pik-toolkit
Installation
npm install -g @andrijdavid/bazos-mcpUsage
Add to your MCP client configuration (e.g. Claude Desktop):
{
"mcpServers": {
"bazos": {
"command": "npx",
"args": ["-y", "@andrijdavid/bazos-mcp"]
}
}
}Tools
search_ads
Search ads with filters.
Arguments:
domain:"cz","sk","at", or"pl"section: Section code (e.g.AUfor Auto)query: Search query stringprice_from: Minimum priceprice_to: Maximum pricesort:date,price_asc,price_desc,distancelatitude/longitude: Required when sort isdistanceoffset: Pagination offset (multiples of 20)limit: Page size (multiples of 20, max 200)
get_ad_detail
Get full details for an ad.
Arguments:
domain:"cz","sk","at", or"pl"ad_id: The ad ID
get_user_ratings
Get user ratings.
Arguments:
domain:"cz","sk","at", or"pl"phone: Phone IDemail: Email IDoffset: Pagination offsetlimit: Page size
Sections
Code | Name |
AU | Auto |
DE | Deti |
DU | Dum a Zahrada |
EL | Elektro |
FO | Foto |
HU | Hudba |
KN | Knihy |
MO | Mobily |
MT | Motorky |
NA | Nabytek |
OB | Obleceni |
PC | PC |
PR | Prace |
RE | Reality |
SL | Sluzby |
SP | Sport |
ST | Stroje |
VS | Vstupenky |
ZV | Zvirata |
OS | Ostatni |
Disclaimer
This project is not affiliated with or endorsed by Bazos.cz, Bazos.sk, Bazos.at, or Bazos.pl. The author is not responsible for any consequences arising from use of this software. The code is provided "as is", without warranty of any kind.
License
GNU AGPL-3.0. See LICENSE.
Available Tools
3 toolsget_ad_detailB
Get detailed information about a specific ad by its ID.
| Name | Required | Description | Default |
|---|---|---|---|
| ad_id | Yes | The ad ID | |
| domain | Yes | Domain: cz, sk, at, or pl |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description carries full burden. It indicates a read operation without side effects, but does not mention authentication, rate limits, or that the tool is read-only. This is minimally sufficient for a simple getter.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that is front-loaded and contains no unnecessary words. Every word is relevant.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With only 2 parameters and no output schema, the description is adequate but could be improved by specifying what 'detailed information' includes. Missing context about return structure or differences from sibling search_ads.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, providing clear meanings for ad_id and domain. The description adds no extra value beyond the schema, therefore baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Get detailed information about a specific ad by its ID.' The verb 'Get' and resource 'ad detail' are specific. It distinguishes from sibling tools like search_ads (searching) and get_user_ratings (ratings), though it could be more explicit about the scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives. It does not mention when not to use it or that search_ads might be preferred for listing.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_user_ratingsC
Get user ratings by phone ID and/or email ID.
| Name | Required | Description | Default |
|---|---|---|---|
| No | Email ID of the user | ||
| limit | No | Limit for pagination. Default: 20. | |
| phone | No | Phone ID of the user | |
| domain | Yes | Domain: cz, sk, at, or pl | |
| offset | No | Offset for pagination. Default: 0. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description must disclose behavioral traits. It only states the basic function, omitting details like authentication, rate limits, data freshness, or that it returns a list of ratings. Schema covers pagination, but description adds no behavioral context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence with no wasted words. However, it lacks structure (e.g., no mention of return format or example usage). It is efficient but could be slightly enhanced.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the absence of an output schema and annotations, the description should compensate by explaining what 'ratings' are, how domain affects results, and the behavior when multiple filters are combined. It fails to provide this context, leaving gaps for agent understanding.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with descriptions for all parameters. The description adds no extra semantic meaning beyond what the schema provides, only implying that phone and email are filter criteria. Baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Get' and the resource 'user ratings', and specifies filtering by phone ID and/or email ID. It is unambiguous and distinguishes from sibling tools which are about ads.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives. The description merely states what it does, without any context on prerequisites, typical scenarios, or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_adsA
Search ads on Bazos.cz, Bazos.sk, Bazos.at, or Bazos.pl. Returns a list of ads matching the criteria.
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | Sort type. Available: date, price_asc, price_desc, distance. For distance, provide latitude and longitude. | |
| limit | No | Limit for pagination. Default: 20. Must be a multiple of 20 up to 200. | |
| query | No | Search query string | |
| domain | Yes | Domain to search: cz, sk, at, or pl | |
| offset | No | Offset for pagination. Default: 0. Must be a multiple of 20. | |
| section | No | Section code. Available: AU = Auto DE = Deti DU = Dum a Zahrada EL = Elektro FO = Foto HU = Hudba KN = Knihy MO = Mobily MT = Motorky NA = Nabytek OB = Obleceni PC = PC PR = Prace RE = Reality SL = Sluzby SP = Sport ST = Stroje VS = Vstupenky ZV = Zvirata OS = Ostatni | |
| latitude | No | Latitude (required when sort is distance) | |
| price_to | No | Maximum price | |
| longitude | No | Longitude (required when sort is distance) | |
| price_from | No | Minimum price |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden but only states basic behavior (returns list of ads). It lacks details on pagination, sort behavior, error handling, or rate limits. Schema parameters hint at pagination and sorting but description does not clarify.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences front-load the purpose and scope. No wasted words, efficient communication.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the parameter count (10) and no output schema or annotations, the description is minimal. It explains the general behavior but lacks details on return values, pagination behavior, and how to use parameters effectively. Adequate but incomplete for complex usage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with descriptions for all 10 parameters. The description adds no additional meaning beyond the schema, so baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool searches ads on specific domains (Bazos.cz, .sk, .at, .pl) and returns a list of matching ads. It distinguishes itself from siblings (get_ad_detail, get_user_ratings) by focusing on search across multiple domains.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for searching ads but provides no explicit guidance on when to use this tool versus alternatives like get_ad_detail or get_user_ratings. No exclusion criteria or context for choosing between tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
3 tool updates
v0.1.3- First observed
get_ad_detail - First observed
get_user_ratings - First observed
search_ads
TDQS
Scored across 3 tools
Each tool has a clearly distinct purpose: searching ads, getting ad details, and retrieving user ratings. There is no overlap or ambiguity.
All tool names follow a consistent verb_noun pattern in snake_case (search_ads, get_ad_detail, get_user_ratings), making them predictable and easy to understand.
Three tools is slightly below average but reasonable for a focused read-only classified ads interface. The scope is appropriate, though a few more tools (e.g., list categories) could be added.
The toolset covers the core browsing workflow—search, detail view, and user ratings. Minor gaps exist (e.g., no explicit category listing or filtering), but the set is functional for typical use cases.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
- mcpOAuthcom.zomato
An MCP server that exposes functionalities to use Zomato's services.
MCP server for Google search results via SERP API
MCP Server for an Agent Task Marketplace
Related MCP Servers
- AlicenseAqualityBmaintenanceMCP server to search and retrieve public ads from OLX Brasil and Mercado Livre Brasil with automatic anti-bot bypass.4MIT
- FlicenseNot gradedqualityCmaintenanceMCP server for managing OLX.ba / PIK.ba shops, enabling listing management, category/location queries, sponsor operations, and image uploads via natural language.-
- AlicenseNot gradedqualityDmaintenanceMCP server for OLX marketplace. Enables AI assistants to search listings, get offer details, track prices over time, and compare offers across OLX Poland and other supported countries.6224MIT
- FlicenseNot gradedqualityCmaintenanceRemote MCP server (Streamable HTTP) that reads and parses the public catalog website atcmarket.cz (AT Computers) to enable product search, category-filtered search, supported filter listing, product detail lookup, and cross-product comparison — without login or state.-