serverData.superfrete.description
SuperFrete le da a tu agente 11 tools que llama directo — elegí las que necesite, en Claude, Cursor o cualquier cliente MCP.
calculate_freight — Calculate shipping rates across multiple carriers (PAC, SEDEX, JadLog, Loggi, Mini Envios). Returns pricing, delivery time, and carrier details for each available service.create_freight — Create a freight/label order. Returns the order ID, price, protocol, and tracking code. For commercial shipments, invoice details are required.get_freight — Get detailed information about a freight order including status, tracking, addresses, pricing, and label print URL.// 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("calculate_freight", { /* ... */ });$ npm install @codespar/mcp-superfreteAgregá esta entrada a tu claude_desktop_config.json (o a la config de cualquier cliente compatible con MCP).
{
"mcpServers": {
"superfrete": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-superfrete"
],
"env": {
"SUPERFRETE_TOKEN": "<your_superfrete_token>"
}
}
}
}Después de reiniciar, tu agente puede llamar cualquiera de las 11 herramientas de abajo — probá calculate_freight primero.
Necesarias para autenticar el server. Almacenadas cifradas al usar el hosting gestionado de CodeSpar.
SUPERFRETE_TOKENSuperFrete API Bearer token from https://web.superfrete.com/#/integrations
SUPERFRETE_SANDBOXSet to 'true' to use the sandbox API (https://sandbox.superfrete.com/). Defaults to production.
Cada herramienta es independiente — tu agente carga solo lo que necesita para reducir contexto y tiempo de respuesta.
calculate_freightcreate_freightget_freightcheckout_freightcancel_freightget_user_infoget_user_addressesget_servicesMCP es un protocolo — cualquier framework que lo hable puede montar este server.