serverData.superfrete.description
SuperFrete gives your agent 11 tools it calls directly β pick the ones it needs, in Claude, Cursor, or any MCP client.
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-superfreteAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"mcpServers": {
"superfrete": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-superfrete"
],
"env": {
"SUPERFRETE_TOKEN": "<your_superfrete_token>"
}
}
}
}After restart, your agent can call any of the 11 tools below β try calculate_freight first.
Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
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.
Each tool is independent β your agent loads only what it needs to reduce context and response time.
calculate_freightcreate_freightget_freightcheckout_freightcancel_freightget_user_infoget_user_addressesget_servicesMCP is a protocol β any framework that speaks it can mount this server.