Skip to main content
CO

Coordinadora

v0.2.0-alpha.2API Keyalpha

Colombia's top courier network: shipment quotes, guias, tracking, and coverage lookup. Your agent dispatches packages across Colombia.

19 tools2 env varsπŸ‡¨πŸ‡΄ Colombiaalpha β€” pending validation

What your agent can do

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 shipment
  • get_shipment β€” Get shipment details by guide number
  • track_shipment β€” Track a shipment by guide 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-coordinadora@alpha

Quickstart

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

claude_desktop_config.json
{
  "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.

Environment variables Β· 2

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

COORDINADORA_API_KEY
requiredsecret

API key for Coordinadora

COORDINADORA_NIT
required

Company NIT number

Available tools Β· 19

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 guide number
WRITEtrack_shipment
Track a shipment by guide number
READget_rates
Get shipping rates/quotes
READlist_cities
List available cities for shipping
WRITEcreate_pickup
Schedule a pickup at an address
READget_coverage
Check if a location is within coverage area
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-coordinadora` 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.
Coordinadora β€” MCP server Β· 19 tools | CodeSpar