Argentina's leading courier: shipment creation, label generation, tracking, and branch lookup. Your agent manages deliveries nationwide.
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 shipmentget_shipment β Get shipment details by IDtrack_shipment β Track a shipment by tracking number// 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", { /* ... */ });$ npm install @codespar/mcp-andreani@alphaAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"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.
Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
ANDREANI_API_KEYAPI key for Andreani
ANDREANI_USERUsername for Andreani
ANDREANI_PASSWORDPassword for Andreani
Each tool is independent β your agent loads only what it needs to reduce context and response time.
create_shipmentget_shipmenttrack_shipmentget_rateslist_branchescreate_labelget_tracking_historycancel_shipmentMCP is a protocol β any framework that speaks it can mount this server.