npm transparentcars-mcpstreamable-httpMITupdated 12d ago
An MCP server that lets AI assistants work with TransparentCars — honest, budget used cars for the local Portuguese market. Search live stock, check whether a car's asking price is actually fair, estimate the yearly cost of keeping a car on the road, and get in touch.
What can you do with transparentpt?
TransparentCars MCP server
An MCP server that lets AI assistants work with TransparentCars — honest, budget used cars for the local Portuguese market. Search live stock, check whether a car's asking price is actually fair, estimate the yearly cost of keeping a car on the road, and get in touch.
It's a thin, open-source wrapper over the public transparent.pt API — no keys, no setup beyond adding the server.
Tools
| Tool | What it does |
|---|---|
search_inventory |
Search current budget stock by make, model, fuel, gearbox, price, year |
get_car |
Full details + specs for one car |
check_fair_price |
The market range a car sells for — plus a fair / above-market / below-market verdict on an asking price |
cost_to_own |
The annual IUC road tax + a plain running-cost framing for budgeting |
list_makes_models |
Canonical brand/model names the other tools expect |
contact_me |
Ask a human to get in touch (needs the user's consent + contact) |
The fair-price check is the point: paste any listing's price and get a straight answer on whether it's a good deal — no sales spin.
Use it
Remote (add a URL)
https://transparent.pt/mcp
Add it in any client that supports remote/Streamable HTTP MCP servers.
Local (stdio, via npx)
Claude Desktop / Cline / Continue config:
{
"mcpServers": {
"transparentcars": {
"command": "npx",
"args": ["-y", "transparentcars-mcp"]
}
}
}
Examples
- "Find a manual petrol car under €10,000 in TransparentCars stock."
- "A dealer wants €9,500 for a 2014 Renault Clio with 120,000 km — is that fair?"
- "What's the yearly road tax on a 2016 petrol, 1200 cc, 120 g/km CO₂?"
- "Ask TransparentCars to call me — my name is … and my number is …"
Configuration
| Env var | Default | Purpose |
|---|---|---|
TC_API_BASE |
https://transparent.pt/api/public |
Public API base |
TC_SITE |
transparentcars |
Site key the API is scoped to |
TC_LANG |
en |
Response language (pt/en) |
PORT / MCP_PATH |
8099 / /mcp |
HTTP server (remote mode) |
Develop
npm install
npm run build
node dist/index.js # stdio
npm run start:http # remote HTTP on :8099/mcp
Notes
- Estimates, not guarantees. The fair-price range and running-cost figures are estimates built from real comparable listings and the official road-tax table; treat them as guidance, not a formal valuation.
- Privacy.
contact_mesends the details the user provides to TransparentCars (privacy policy); it requires explicit user intent and consent. - No business logic or data lives in this repo — it only calls the public API.
MIT © TransparentCars
Install
Add transparentpt to your client. Pick the one you use.
{
"servers": {
"transparentcars-mcp": {
"type": "http",
"url": "https://transparent.pt/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
claude mcp add transparentcars-mcp -- npx -y transparentcars-mcpcodex mcp add transparentcars-mcp -- npx -y transparentcars-mcpamp mcp add transparentcars-mcp -- npx -y transparentcars-mcp{
"mcpServers": {
"transparentcars-mcp": {
"command": "npx",
"args": [
"-y",
"transparentcars-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"transparentcars-mcp": {
"command": "npx",
"args": [
"-y",
"transparentcars-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"mcpServers": {
"transparentcars-mcp": {
"command": "npx",
"args": [
"-y",
"transparentcars-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"transparentcars-mcp": {
"command": "npx",
"args": [
"-y",
"transparentcars-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"transparentcars-mcp": {
"command": "npx",
"args": [
"-y",
"transparentcars-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"transparentcars-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"transparentcars-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"transparentcars-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"transparentcars-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y transparentcars-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
6 tools
transparentpt exposes 6 tools to a connected agent.
- search_inventory
- Search current budget stock by make, model, fuel, gearbox, price, year
- get_car
- Full details + specs for one car
- check_fair_price
- The market range a car sells for — plus a fair / above-market / below-market verdict on an asking price
- cost_to_own
- The annual IUC road tax + a plain running-cost framing for budgeting
- list_makes_models
- Canonical brand/model names the other tools expect
- contact_me
- Ask a human to get in touch (needs the user's consent + contact)
Score
75 / 100
Good
- Documentation22/25
- Maintenance19/25
- Trust13/20
- Capability6/15
- Install experience15/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 5 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 6 tool(s) documented
- Provides prompt templates
- Provides resources
- 18 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 0.1.0Latest | Aug 27, 2026 |