
Research
/Security News
737 Chrome VPN Extensions Linked to Brand Impersonation and Browser Traffic Redirection
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.
@ar-agents/aduana
Advanced tools
ARCA Aduana (formerly AFIP Aduana / María) agent toolkit for the Vercel AI SDK 6. Look up import/export declarations by SUSI/KIM/OM number, status of an in-flight despacho, and the publicly-available tariff nomenclature (NCM). Adapter pattern: typed mock
ARCA Aduana (formerly AFIP / María) as drop-in tools for the Vercel AI SDK.
Look up Argentine customs declarations by SUSI / KIM / OM number, check the status of an in-flight despacho, and resolve NCM tariff codes — all from inside an agent.
pnpm add @ar-agents/aduana
import { aduanaTools, HttpAduanaAdapter } from "@ar-agents/aduana";
const tools = aduanaTools({ adapter: new HttpAduanaAdapter() });
// Pass `tools` directly to Vercel AI SDK's generateText / streamText.
For testing, swap the HTTP adapter for the in-memory one:
import { InMemoryAduanaAdapter } from "@ar-agents/aduana";
const tools = aduanaTools({
adapter: new InMemoryAduanaAdapter({
despachos: [
{
identifier: { kind: "SUSI", value: "24001IM4001234A" },
found: true,
status: "canalizado_verde",
operationKind: "IM4",
ncmCode: "84713010",
},
],
}),
});
| Tool | Returns |
|---|---|
aduana_lookup_despacho | Status, operation kind, NCM, registration date, Aduana office. {found: false} for unknown IDs — not an error. |
aduana_lookup_ncm | Description, whether currently in force, AEC + DIE percent. |
All errors extend AduanaError (which extends ArAgentsError from
@ar-agents/core):
AduanaValidationError — bad inputAduanaUnconfiguredError — adapter not wired (default), see error message
for setup stepsAduanaApiError — non-2xx HTTP response (retryable for 5xx / 429)v0.1 — read-only against the public ARCA REST surface published in 2025. Write operations (registering a despacho) require WSAA cert handling and are out of scope for v0.1.
MIT
FAQs
ARCA Aduana (formerly AFIP Aduana / María) agent toolkit for the Vercel AI SDK 6. Look up import/export declarations by SUSI/KIM/OM number, status of an in-flight despacho, and the publicly-available tariff nomenclature (NCM). Adapter pattern: typed mock
We found that @ar-agents/aduana demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Research
/Security News
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.