Sign In

@ar-agents/dnrpa

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ar-agents/dnrpa

DNRPA (Dirección Nacional de los Registros Nacionales de la Propiedad del Automotor) agent toolkit for the Vercel AI SDK 6. Domain/patente lookups: status, last known holder, mortgage/encumbrance flags. Ships Unconfigured (throws) + InMemory (test) adapte

latest
Source
npmnpm
Version
0.2.3
Version published
Maintainers
1
Created
Source

@ar-agents/dnrpa

Argentine vehicle plate (dominio) lookups for AI agents.

Install

pnpm add @ar-agents/dnrpa

Quick start

import { dnrpaTools } from "@ar-agents/dnrpa";

const tools = dnrpaTools(/* adapter: yourBrowserAdapter */);

⚠ DNRPA has no free REST API. The default adapter throws. Wire a BrowserDnrpaAdapter against the browse runtime of your choice; see AGENTS.md for runtime rules.

Plate format

FormatExampleEra
LL000LLAB123CDMercosur, post-2016
LLL000FFF123Old Argentine, 1995-2016

Hyphens stripped automatically.

Returns

{
  dominio: string;
  found: boolean;
  marca?: string;
  modelo?: string;
  anio?: number;
  origen?: "nacional" | "importado" | "mercosur";
  prendaActiva?: boolean;  // mortgage in force?
  baja?: boolean;          // stolen / restricted?
  ultimaTransferencia?: string;
}

License

MIT

Keywords

dnrpa

FAQs

Package last updated on 03 Jul 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts