Turbo.az MCP Server
Enables users to search for vehicles and retrieve detailed listing information from the Turbo.az automotive marketplace. It supports advanced filtering by make, model, price, and other specifications through natural language queries.
README
Turbo.az MCP Server
MCP (Model Context Protocol) server for Turbo.az automotive marketplace. This server enables Claude Desktop to search for cars and retrieve listing information from turbo.az.
⚠️ Important Note
Turbo.az blocks access from outside Azerbaijan. This server must run from an Azerbaijani IP:
- Local computer (in Azerbaijan)
- Via VPN with Azerbaijan IP
- From a VPS located in Azerbaijan
🚀 Installation
1. Requirements
- Python 3.10+
- Google Chrome browser
- pip
2. Server Setup
# Clone the repo or copy files
cd turbo-az-mcp
# Create virtual environment
python -m venv venv
# Activate
# Windows:
venv\Scripts\activate
# Linux/Mac:
source venv/bin/activate
# Install packages
pip install -e .
3. Test
# Run server manually
python -m src.server
4. Test MCP without LLM
Spawns the server and calls tools (requires Chrome):
uv run python scripts/test_mcp.py
🔧 Claude Desktop (local MCP, stdio)
Local-only: Claude Desktop runs the server as a subprocess. Do not use "Add custom connector" / Remote MCP URL.
-
Find and open the config file:
- Windows:
%APPDATA%\Claude\claude_desktop_config.json - macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Linux:
~/.config/Claude/claude_desktop_config.json
- Windows:
-
Add to
mcpServerssection (or copyclaude_desktop_config.example.jsonfrom the project and changecwdto your path):
With uv (recommended):
{
"mcpServers": {
"turbo-az": {
"command": "uv",
"args": ["run", "python", "-m", "src.server"],
"cwd": "/home/javid/dev/turbo-mcp"
}
}
}
With Python / venv:
{
"mcpServers": {
"turbo-az": {
"command": "python",
"args": ["-m", "src.server"],
"cwd": "/home/javid/dev/turbo-mcp"
}
}
}
Note: cwd is the full path to the project folder. Restart Claude Desktop.
Claude on Windows, Server in WSL
If Claude Desktop is on Windows but the project is in WSL, use wsl in config. WSL non-interactive shell may not have uv in PATH, so use venv python:
{
"mcpServers": {
"turbo-az": {
"command": "wsl",
"args": ["bash", "-c", "cd /home/javid/dev/turbo-mcp && .venv/bin/python -m src.server"]
}
}
}
Replace /home/javid/dev/turbo-mcp with your WSL project path. If venv is not .venv (e.g. venv), use venv/bin/python instead of .venv/bin/python.
Chrome in WSL: When server runs in WSL, Chrome/Chromium must be installed in WSL for Selenium (Windows Chrome won't work). In WSL terminal:
sudo apt update && sudo apt install -y chromium-browser
If chromium-browser requires snap, install Google Chrome for Linux or set CHROME_BINARY=/usr/bin/chromium (or installed path).
📋 Available Tools
1. search_cars
Search for cars.
Parameters:
make- Brand (BMW, Mercedes, Toyota, etc.)model- Model (X5, E-Class, etc.)price_min/price_max- Price range (AZN)year_min/year_max- Year rangefuel_type- Fuel: benzin, dizel, qaz, elektrik, hibridtransmission- avtomat, mexanikilimit- Number of results (default: 10)
Example query: "Search for BMW X5 from 2020, price up to 50000 AZN on Turbo.az"
2. get_car_details
Detailed listing information.
Parameters:
listing_id- Listing ID or full URL
Example query: "Show details of this listing on Turbo.az: 12345678"
3. get_makes_models
List of makes and models.
Parameters:
make- Brand (to see its models, empty = all makes)
Example query: "What BMW models are available on turbo.az?"
4. get_trending
New/popular listings.
Parameters:
category- new, popular, viplimit- Number of results
🐛 Troubleshooting
"403 Forbidden" error
- Make sure you're running from Azerbaijan IP
- Use VPN (Azerbaijan IP)
ChromeDriver error
- Make sure Chrome browser is installed
webdriver-managerautomatically downloads ChromeDriver
"DevToolsActivePort file doesn't exist" (WSL)
chromium-browser(snap) often doesn't work in WSL. Install Google Chrome:wget -q https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb sudo dpkg -i google-chrome-stable_current_amd64.deb sudo apt install -f- Or with virtual display:
sudo apt install xvfbthenxvfb-run -a uv run python scripts/test_mcp.py
Timeout error
- Check internet connection
- Check if turbo.az is working
📄 License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.