Mexican multi-carrier shipping: quotes, labels, and tracking across DHL, FedEx, Estafeta, and Redpack. Your agent ships anywhere in Mexico.
Skydropx gives your agent 23 tools it calls directly β pick the ones it needs, in Claude, Cursor, or any MCP client.
create_shipment β Create a shipmentget_shipment β Get shipment by IDlist_shipments β List shipments// 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-skydropxAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"mcpServers": {
"skydropx": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-skydropx"
],
"env": {
"SKYDROPX_API_TOKEN": "<your_skydropx_api_token>"
}
}
}
}After restart, your agent can call any of the 23 tools below β try create_shipment first.
Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
SKYDROPX_API_TOKENAPI token for Skydropx
Each tool is independent β your agent loads only what it needs to reduce context and response time.
create_shipmentget_shipmentlist_shipmentsget_ratescreate_labeltrack_shipmentlist_carrierscreate_addressMCP is a protocol β any framework that speaks it can mount this server.