Car Deals Search MCP
Click on "Deploy 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., "@Car Deals Search MCPfind me a used Toyota Camry under $15k with no accidents near 90210"
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.
Car Deals Search MCP
Search used car listings from Cars.com, Autotrader, and KBB with AI assistants
An MCP (Model Context Protocol) server that aggregates and searches car listings from multiple sources. Scrapes listings in parallel, extracts price, mileage, dealer info, and applies optional CARFAX-style filters (1-owner, no accidents, personal use).
๐ Quick Start
Prerequisites
Node.js (v16 or higher)
Chrome/Chromium browser installed (required by Puppeteer)
If Chrome is not in the default location, set
PUPPETEER_EXECUTABLE_PATHenvironment variable to point to your Chrome/Chromium binary
Installation
# Clone the repository
git clone https://github.com/SiddarthaKoppaka/car_deals_search_mcp.git
cd car_deals_search_mcp
# Install dependencies (includes Puppeteer)
npm installUsing with MCP Clients
Configure your MCP client (Claude Desktop, VS Code, GitHub Copilot, etc.) to use this server:
For Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"car-deals": {
"command": "node",
"args": ["/absolute/path/to/car_deals_search_mcp/src/server.js"]
}
}
}For other MCP clients, refer to their documentation and use:
Command:
nodeArgs:
["<absolute-path-to-repo>/src/server.js"]
Testing Standalone
# Run the test command
npm test
# Or test manually with a specific search
node -e "
const { scrapeCarscom } = require('./src/scraper.js');
scrapeCarscom({
make: 'Toyota',
model: 'Camry',
oneOwner: true,
noAccidents: true,
personalUse: true
}, 5).then(listings => listings.forEach(l => console.log(l.format())));
"Related MCP server: MarketCheck MCP Apps
โจ Features
Multi-source aggregation: Search Cars.com, Autotrader, and KBB simultaneously
Smart filtering: CARFAX-style filters (1-Owner, No Accidents, Personal Use)
Deal ratings: Heuristic-based deal quality assessment
Parallel scraping: Fast concurrent queries across sources
Stealth mode: Puppeteer with anti-bot detection techniques
๐ Supported Sources
Source | Price | Mileage | Deal Rating | Dealer Info | CARFAX Filters |
Cars.com | โ | โ | โ | โ | โ |
Autotrader | โ | โ | โ ๏ธ Limited | โ | โ ๏ธ Limited |
KBB | โ | โ | โ | โ ๏ธ Limited | โ ๏ธ Limited |
๐ง MCP Tool: search_car_deals
Parameters
Parameter | Type | Required | Description |
| string | โ | Car manufacturer (e.g., "Toyota", "Honda") |
| string | โ | Car model (e.g., "Camry", "Accord") |
| string | โ | ZIP code for local search (default: "90210") |
| integer | โ | Minimum model year |
| integer | โ | Maximum model year |
| integer | โ | Maximum price in USD |
| integer | โ | Maximum mileage |
| integer | โ | Max results per source (default: 10) |
| array | โ | Sources to query: |
| boolean | โ | Filter for CARFAX 1-owner vehicles only |
| boolean | โ | Filter for no accidents reported |
| boolean | โ | Filter for personal use only (not rental/fleet) |
Example Response
๐ 2021 Toyota Camry XSE
๐ฐ Price: $23,491
๐ Mileage: 52,649 mi
โญ Deal Rating: Good Deal
๐ CARFAX: 1-Owner | No Accidents | Personal Use
๐ช Dealer: Valencia BMW
๐ Source: Cars.com
๐ https://www.cars.com/vehicledetail/...๐ ๏ธ Technical Details
Scraping: Puppeteer (headless Chromium) with stealth plugin to bypass bot detection
Concurrency: Parallel scraper workers for simultaneous multi-source queries
Protocol: Implements MCP (Model Context Protocol) for AI assistant integration
Data extraction: Source-specific parsers normalize listings into a common schema
Chrome/Chromium Requirement
This project uses Puppeteer, which requires Chrome or Chromium to be installed:
macOS: Chrome is typically at
/Applications/Google Chrome.app/Contents/MacOS/Google ChromeLinux: Usually auto-detected by Puppeteer or at
/usr/bin/chromium-browserWindows: Typically at
C:\Program Files\Google\Chrome\Application\chrome.exe
If Puppeteer cannot find your browser, set the environment variable:
export PUPPETEER_EXECUTABLE_PATH="/path/to/chrome"๐งช Development & Testing
# Run tests
npm test
# Test individual scrapers
node src/scraper.js
# View code structure
ls -la src/๐ค Contributing
Contributions are welcome! Please follow this workflow:
Fork the repository
Create a feature branch (
git checkout -b feature/amazing-feature)Add tests for new functionality
Commit your changes (
git commit -m 'Add amazing feature')Push to the branch (
git push origin feature/amazing-feature)Open a Pull Request
Please include test coverage for scraping/parsing changes to avoid regressions when source sites update.
๐ License
MIT License - see LICENSE file for details
๐ Links
Available Tools
1 toolsearch_car_dealsA
Search for car deals across multiple sources (Cars.com, Autotrader, KBB). Returns listings with prices, mileage, deal ratings, and links.
| Name | Required | Description | Default |
|---|---|---|---|
| zip | No | ZIP code for location-based search (default: 90210) | |
| make | Yes | Car manufacturer (e.g., Toyota, Honda, Ford) | |
| model | Yes | Car model (e.g., Camry, Civic, F-150) | |
| sources | No | Sources to search: "cars.com", "autotrader", "kbb". Default: all | |
| yearMax | No | Maximum model year | |
| yearMin | No | Minimum model year | |
| oneOwner | No | Filter for CARFAX 1-Owner vehicles only | |
| priceMax | No | Maximum price in dollars | |
| maxResults | No | Maximum results per source (default: 10) | |
| mileageMax | No | Maximum mileage | |
| noAccidents | No | Filter for vehicles with no accidents or damage reported | |
| personalUse | No | Filter for vehicles used for personal use only (not rental/fleet) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses that the tool searches across multiple sources and returns listings with specific fields. However, it does not mention any limitations, rate limits, authentication requirements, or what happens if no results are found. It does not contradict anything, but it lacks depth in behavioral disclosure beyond the basic function.
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 that front-loads the primary action and result. Every part is informative with no waste. It efficiently communicates the tool's purpose without unnecessary elaboration.
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?
Despite 12 parameters and no output schema, the description provides enough context by mentioning the return fields (prices, mileage, deal ratings, links). It does not explain ordering, pagination, or error handling, but the schema covers parameter semantics. Given the tool's complexity, it is reasonably complete, though slightly more detail on result behavior would justify a 5.
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 schema provides 100% coverage with descriptions for every parameter. The tool description does not add additional parameter-specific semantics beyond what the schema already states, such as the use of 'maxResults' or 'oneOwner'. Per the baseline rule, since schema coverage is high, a 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 states a specific verb ('Search'), a specific resource ('car deals'), and names the sources (Cars.com, Autotrader, KBB) and return types (prices, mileage, deal ratings, links). It is clear and distinct, though there are no sibling tools to differentiate from. The purpose is unambiguous.
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 clearly implies usage: search for car deals using the provided filters. Since no sibling tools are listed, there is no need to specify alternatives or exclusions. The context is clear, but it does not explicitly state when not to use or what alternatives exist. Given the absence of siblings, this is adequate.
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.
1 tool update
v1.0.0- First observed
search_car_deals
TDQS
Scored across 1 tool
With only a single tool, there is no potential for confusion or misselection. The tool's purpose is clear and unambiguous within the server.
The single tool name 'search_car_deals' follows a consistent verb_noun convention, making it predictable and readable. No other tools exist to create inconsistency.
The server has only one tool, which is borderline thin. While the narrow scope of 'car deals search' might justify this, users might expect additional related tools (e.g., filtering, saving deals) to make the server feel more complete.
The tool covers the primary search functionality across multiple sources, returning comprehensive listing data. Minor gaps exist such as lack of detailed deal views or comparison tools, but the core use case is well-served.
Maintenance
Related MCP Connectors
Automotive inventory search for AI assistants: vehicles, dealers, deals, and market data.
AI-native used car marketplace. 145K+ vehicles, 4300+ dealers, 13 US states, 20 MCP tools.
Search live US dealership inventory, get market prices, and send buyer inquiries. Free, no API key.
Cars.com listings, VIN lookups, and dealer inventory for car-buying assistants.
Related MCP Servers
- AlicenseAqualityDmaintenanceAggregates and searches used car listings from multiple sources (Cars.com, Autotrader, KBB) with price, mileage, dealer info, and optional CarFax-style filters (1-owner, no accidents, personal use).14MIT
- FlicenseNot gradedqualityBmaintenanceProvides 25 interactive automotive intelligence tools for real-time market data, including VIN decoding, price predictions, and inventory analytics. It enables AI assistants to perform car searches, trade-in estimations, and market trend analysis using the Model Context Protocol.2-
- AlicenseAqualityAmaintenanceEnables AI assistants to search secondhand marketplaces (Facebook Marketplace, eBay, Depop, Poshmark) for used items with filters like price, condition, size, and color.5475 npm70MIT

Vincario MCP Serverofficial
FlicenseNot gradedqualityDmaintenanceEnables AI assistants to decode VINs, check stolen vehicle databases, and retrieve market valuations through natural language.2-