by l-margiela
Integrate with OLX to search property listings, retrieve detailed seller info, and monitor prices for market research ac
Scrapes OLX marketplace listings across 5 European countries to search and retrieve detailed property/item information including seller data.
OLX is a community-built MCP server published by l-margiela that provides AI assistants with tools and capabilities via the Model Context Protocol. Integrate with OLX to search property listings, retrieve detailed seller info, and monitor prices for market research ac It is categorized under browser automation, search web.
You can install OLX in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
OLX is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Fetch and extract information from websites automatically
Example
Research competitor pricing, scrape product reviews, monitor news mentions
Automate 5-10 hours/week of manual web research
Track website changes, new content, price updates
Example
Monitor competitor blog for new posts, track stock availability, watch for pricing changes
Stay informed without manual checking, never miss important updates
Extract structured data from multiple websites
Example
Compile product listings from 10 e-commerce sites, aggregate job postings, collect real estate data
Build datasets 100x faster than manual copying
Share your MCP server with the developer community
OLX is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
According to our notes, OLX benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
OLX has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
According to our notes, OLX benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
OLX is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
We evaluated OLX against two servers with overlapping tools; this profile had the clearer scope statement.
OLX is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
OLX has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
We evaluated OLX against two servers with overlapping tools; this profile had the clearer scope statement.
OLX is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
showing 1-10 of 49
Why search for e-waste in your area by yourself if Claude can do it for you?
100% AI slop.
Locate your Claude Desktop config file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json~/.config/Claude/claude_desktop_config.jsonAdd the OLX MCP server to your configuration:
{
"mcpServers": {
"olx-mcp": {
"command": "npx",
"args": ["olx-mcp"]
}
}
}
If you prefer to install globally:
npm install -g olx-mcp
Then use this config:
{
"mcpServers": {
"olx-mcp": {
"command": "olx-mcp"
}
}
}
git clone https://github.com/l-margiela/olx-mcp.git
cd olx-mcp
npm install
npm run build
Use this config for development:
{
"mcpServers": {
"olx-mcp": {
"command": "node",
"args": ["/absolute/path/to/olx-mcp/dist/index.js"]
}
}
}
Once configured, you can use the following tools in your MCP client:
Search for listings on any supported OLX domain with various filters:
Can you search for "apartments" in "Lisboa" on OLX Portugal with a maximum price of 1000 euros?
Search for "telefon" in "warszawa" on OLX Poland with prices between 100-500 PLN?
Parameters:
domain (required): OLX domain ('olx.pt', 'olx.pl', 'olx.bg', 'olx.ro', 'olx.ua')query (optional): Search termcategory (optional): Category filterlocation (optional): Location filterminPrice (optional): Minimum pricemaxPrice (optional): Maximum pricepage (default: 1): Page numberlimit (default: 20): Items per pagesortBy (default: 'relevance'): Sort order ('relevance', 'date', 'price-asc', 'price-desc')Get detailed information about a specific listing from any supported domain:
Can you get the details for listing "ABC123" from OLX Portugal?
Show me details for listing "XYZ789" from OLX Poland including images?
Parameters:
domain (required): OLX domain ('olx.pt', 'olx.pl', 'olx.bg', 'olx.ro', 'olx.ua')listingId (required): The ID of the listingincludeImages (default: false): Include image URLsincludeSellerInfo (default: true): Include seller informationnpm run build - Build the TypeScript projectnpm run dev - Run in development mode with hot reloadnpm start - Run the built servernpm test - Run tests (when available)npm run clean - Clean build artifactsFor debugging MCP communication, you can use the MCP Inspector:
npx @modelcontextprotocol/inspector node dist/index.js
MIT License - see LICENSE file for details.
Interact with services that don't offer APIs
Example
Check form submissions, validate website functionality, test user flows
Automate interactions with any website, even without API
Prerequisites
Time Estimate
20-40 minutes including configuration and testing
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
MCP server handles HTTP requests, HTML parsing, JavaScript rendering (if headless browser), and returns structured data to Claude.
Protocols
Compatibility
✓ Use when
Use for research automation, content monitoring, data aggregation from multiple sources, and when official APIs don't exist. Best for read-only information gathering.
✗ Avoid when
Avoid for sites with APIs (use API instead), sites that explicitly forbid scraping, when data is copyrighted, or for login-required content without proper authorization.