Colombia's top courier network: shipment quotes, guias, tracking, and coverage lookup. Your agent dispatches packages across Colombia.
Coordinadora gives your agent 19 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 guide numbertrack_shipment β Track a shipment by guide 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-coordinadora@alphaAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"mcpServers": {
"coordinadora": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-coordinadora@alpha"
],
"env": {
"COORDINADORA_API_KEY": "<your_coordinadora_api_key>",
"COORDINADORA_NIT": "<your_coordinadora_nit>"
}
}
}
}After restart, your agent can call any of the 19 tools below β try create_shipment first.
Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
COORDINADORA_API_KEYAPI key for Coordinadora
COORDINADORA_NITCompany NIT number
Each tool is independent β your agent loads only what it needs to reduce context and response time.
create_shipmentget_shipmenttrack_shipmentget_rateslist_citiescreate_pickupget_coveragecancel_shipmentMCP is a protocol β any framework that speaks it can mount this server.