npm mcp-server-trustcarstreamable-httpMITupdated 1mo ago
MCP (Model Context Protocol) server for trustcar.info — a Ukrainian licence-plate lookup and driver review service. Ask your AI assistant "что за машина AA1234BC?" and it will answer with the registration region, vehicle make/model/year, community rating and recent reviews.
What can you do with plate lookup?
mcp-server-trustcar
MCP (Model Context Protocol) server for trustcar.info — a Ukrainian licence-plate lookup and driver review service. Ask your AI assistant "что за машина AA1234BC?" and it will answer with the registration region, vehicle make/model/year, community rating and recent reviews.
This package is a thin stdio bridge to the site's native MCP endpoint (https://trustcar.info/mcp). Tools are discovered at startup, so the package never goes stale.
Tools
| Tool | Description | Auth |
|---|---|---|
lookup_plate |
Region, vehicle (make/model/year/fuel), rating and recent reviews for a Ukrainian licence plate | none |
recent_plates |
Recently active plates on trustcar.info (with vehicle make/model where known) | none |
post_review |
Post a licence-plate review on behalf of an authenticated user (labelled as AI-agent-generated, shown separately, does not affect the community rating) | OAuth bearer |
Install
Claude Code
claude mcp add trustcar -- npx -y mcp-server-trustcar
Claude Desktop
{
"mcpServers": {
"trustcar": {
"command": "npx",
"args": ["-y", "mcp-server-trustcar"]
}
}
}
Cursor / Windsurf / other MCP clients
Any client that speaks stdio MCP works the same way: command npx, args -y mcp-server-trustcar.
Remote (no install)
MCP clients that support remote servers can skip this package entirely and connect straight to:
https://trustcar.info/mcp
Configuration
| Env var | Meaning |
|---|---|
TRUSTCAR_MCP_URL |
Override the endpoint URL (default https://trustcar.info/mcp) |
TRUSTCAR_TOKEN |
OAuth bearer token — only needed for post_review. Discovery: /.well-known/oauth-protected-resource |
Example
User: Что за машина AA1234BC?
Assistant: (calls
lookup_plate) AA1234BC is registered in Kyiv (AA region). It's a Toyota Camry, 2019, petrol. Community rating on trustcar.info: 4/5 from 3 reviews, the latest one mentions polite driving…
Development
npm install
npm run build
npm test
Related
- trustcar.info — the service itself (uk/ru/en)
- API docs: trustcar.info/.well-known/api-catalog
License
MIT © trustcar.info
Install
Add plate lookup to your client. Pick the one you use.
{
"servers": {
"mcp-server-trustcar": {
"type": "http",
"url": "https://trustcar.info/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
claude mcp add mcp-server-trustcar -- npx -y mcp-server-trustcarcodex mcp add mcp-server-trustcar -- npx -y mcp-server-trustcaramp mcp add mcp-server-trustcar -- npx -y mcp-server-trustcar{
"mcpServers": {
"mcp-server-trustcar": {
"command": "npx",
"args": [
"-y",
"mcp-server-trustcar"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mcp-server-trustcar": {
"command": "npx",
"args": [
"-y",
"mcp-server-trustcar"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"mcpServers": {
"mcp-server-trustcar": {
"command": "npx",
"args": [
"-y",
"mcp-server-trustcar"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"mcp-server-trustcar": {
"command": "npx",
"args": [
"-y",
"mcp-server-trustcar"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"mcp-server-trustcar": {
"command": "npx",
"args": [
"-y",
"mcp-server-trustcar"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"mcp-server-trustcar": {
"type": "local",
"command": "npx",
"args": [
"-y",
"mcp-server-trustcar"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"mcp-server-trustcar": {
"command": {
"path": "npx",
"args": [
"-y",
"mcp-server-trustcar"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y mcp-server-trustcarRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
3 tools
plate lookup exposes 3 tools to a connected agent.
- lookup_plate
- Region, vehicle (make/model/year/fuel), rating and recent reviews for a Ukrainian licence plate
- recent_plates
- Recently active plates on trustcar.info (with vehicle make/model where known)
- post_review
- Post a licence-plate review on behalf of an authenticated user (labelled as AI-agent-generated, shown separately, does not affect the community rating)
Score
76 / 100
Good
- Documentation22/25
- Maintenance19/25
- Trust16/20
- Capability4/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 26 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
- 3 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 |
|---|---|
| 1.0.2Latest | Aug 5, 2026 |