Skip to main content
AN

Andreani

v0.2.0-alpha.2API Keyalpha

Argentina's leading courier: shipment creation, label generation, tracking, and branch lookup. Your agent manages deliveries nationwide.

18 tools3 env varsπŸ‡¦πŸ‡· Argentinaalpha β€” pending validation

What your agent can do

Andreani gives your agent 18 tools it calls directly β€” pick the ones it needs, in Claude, Cursor, or any MCP client.

  • create_shipment β€” Create a new shipment
  • get_shipment β€” Get shipment details by ID
  • track_shipment β€” Track a shipment by tracking number
Example call
// Your agent calls a tool directly β€” no glue code.
// CodeSpar's managed tier handles OAuth2, token rotation and rate limits.
const result = await session.call("create_shipment", { /* ... */ });

Install

terminal
$ npm install @codespar/mcp-andreani@alpha

Quickstart

Add this entry to your claude_desktop_config.json (or any MCP-compatible client config).

claude_desktop_config.json
{
  "mcpServers": {
    "andreani": {
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-andreani@alpha"
      ],
      "env": {
        "ANDREANI_API_KEY": "<your_andreani_api_key>",
        "ANDREANI_USER": "<your_andreani_user>",
        "ANDREANI_PASSWORD": "<your_andreani_password>"
      }
    }
  }
}

After restart, your agent can call any of the 18 tools below β€” try create_shipment first.

Environment variables Β· 3

Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.

ANDREANI_API_KEY
requiredsecret

API key for Andreani

ANDREANI_USER
required

Username for Andreani

ANDREANI_PASSWORD
requiredsecret

Password for Andreani

Available tools Β· 18

Each tool is independent β€” your agent loads only what it needs to reduce context and response time.

WRITEcreate_shipment
Create a new shipment
READget_shipment
Get shipment details by ID
WRITEtrack_shipment
Track a shipment by tracking number
READget_rates
Get shipping rates/quotes
READlist_branches
List Andreani branches/sucursales
WRITEcreate_label
Generate a shipping label for a shipment
WRITEget_tracking_history
Get full tracking history for a shipment
DELETEcancel_shipment
Cancel a shipment

Compatible frameworks

MCP is a protocol β€” any framework that speaks it can mount this server.

Claude Agent SDKAnthropic
OpenAI AgentsOpenAI
Vercel AI SDKVercel
LangChainLangChain
LlamaIndexLlamaIndex
CrewAICrewAI
MastraMastra
Any MCP clientProtocol

Frequently asked questions

Run `npx -y @codespar/mcp-andreani` and add the config block above to your MCP client β€” Claude, Cursor, VS Code, or any MCP-compatible client. No build step, no SDK required. Prefer hosted? CodeSpar's managed tier runs it for you with auth handled.
Andreani β€” MCP server Β· 18 tools | CodeSpar