# Vincario — Pipedream Connect

> Check VIN Number & Get Vehicle Report!

- API slug: `vincario` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: Data Analytics
- Website: https://vindecoder.eu
- This page (HTML): https://pipedream.com/apps/vincario
- Tools: 4 actions · 0 triggers

## Connect via MCP (recommended)

- Endpoint: `https://remote.mcp.pipedream.net/v3`
- Headers: `Authorization: Bearer <token>` · `x-pd-project-id` · `x-pd-environment` · `x-pd-external-user-id` · `x-pd-app-slug: vincario`

```ts
import { Client } from "@modelcontextprotocol/sdk/client/index.js"
import { StreamableHTTPClientTransport } from "@modelcontextprotocol/sdk/client/streamableHttp.js"
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const accessToken = await pd.rawAccessToken

const transport = new StreamableHTTPClientTransport(
  new URL("https://remote.mcp.pipedream.net/v3"),
  {
    requestInit: {
      headers: {
        Authorization: `Bearer ${accessToken}`,
        "x-pd-project-id": process.env.PIPEDREAM_PROJECT_ID!,
        "x-pd-environment": "production",
        "x-pd-external-user-id": "{external_user_id}", // any stable ID for this user in your system
        "x-pd-app-slug": "vincario",
      },
    },
  },
)

const mcp = new Client({ name: "my-agent", version: "1.0.0" })
await mcp.connect(transport)

const { tools } = await mcp.listTools()

// e.g. run Check Stolen:
const result = await mcp.callTool({
  name: "vincario-check-stolen",
  arguments: {
    vin: "VIN",
  },
})
```

Docs: [MCP guide](https://pipedream.com/docs/connect/mcp/developers.md)

## SDK

```ts
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "vincario-check-stolen",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    vincario: { authProvisionId: "apn_xxxxxxx" },
    vin: "VIN",
  },
})
```

Docs: [Managed auth guide](https://pipedream.com/docs/connect/managed-auth/quickstart.md) · [Tools guide](https://pipedream.com/docs/connect/components.md)

## Actions (4)

### `vincario-check-stolen` — Check Stolen (Read-only)

Performs a real-time VIN check in national police databases of stolen vehicles of Czech Republic, Hungary, Romania, Slovenia, Slovakia and Vincario's own database of stolen vehicles. See the documentation

Full schema: https://pipedream.com/apps/vincario/actions/check-stolen.md

### `vincario-decode-vin` — Decode VIN (Read-only)

Decode a VIN number. Returns an object with price, balance and array of vehicle specifications. See the documentation

Full schema: https://pipedream.com/apps/vincario/actions/decode-vin.md

### `vincario-get-vehicle-market-value` — Get Vehicle Market Value (Read-only)

Get the market value of a vehicle. See the documentation

Full schema: https://pipedream.com/apps/vincario/actions/get-vehicle-market-value.md

### `vincario-get-vin-decoder-info` — Get VIN Decoder Info (Read-only)

Get a list of vehicle attributes. Each represents label that is available for given VIN when you do a 'VIN Decode' request. See the documentation

Full schema: https://pipedream.com/apps/vincario/actions/get-vin-decoder-info.md

---

- All apps: https://pipedream.com/apps — index: https://pipedream.com/llms.txt
- Pipedream docs for agents: https://pipedream.com/docs/llms.txt
