Bolsa De Carga MCP MCP Server

MCP Server for Cargoffer Bolsa de Carga API - Model Context Protocol

Local serverstdio

What is the Bolsa De Carga MCP MCP server?

MCP Server for Cargoffer Bolsa de Carga API - Model Context Protocol. That is what the bolsa de carga mcp mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

The European freight spot market runs through dozens of incompatible load boards, each with its own login, UI, and data format. Dispatchers manually check multiple boards, copy-paste load details into spreadsheets, and coordinate negotiations over WhatsApp and email. The process is slow, error-prone, and invisible to automation.

The tools it exposes

The server publishes 14 tools. What each one is for:

  • Email — ** cto@cargoffer.com
  • bolsa_auctions_active — List active freight auctions
  • bolsa_auctions_get — Get auction details by ID
  • bolsa_auctions_create — Create a new auction
  • bolsa_auctions_update — Update an existing auction
  • bolsa_auctions_delete — Delete an auction
  • bolsa_auctions_publish — Publish auction to marketplace
  • bolsa_auctions_accept_bid — Accept a bid on an auction
  • bolsa_auctions_sign_cmr — Sign CMR waybill for auction
  • bolsa_auctions_favorites — Manage favorite auctions
  • bolsa_addresses_list — List all addresses
  • bolsa_addresses_create — Create a new address

Getting it running

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

What it needs from you

Configuration is passed through the environment: API_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

How it compares

Plenty of team communication servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Bolsa De Carga MCP's toolset — Email, bolsa_auctions_active, bolsa_auctions_get and 11 more — is a fair guide to whether it matches your workflow. It is maintained by cargoffer; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Bolsa De Carga MCP.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
Email** cto@cargoffer.com
bolsa_auctions_activeList active freight auctions
bolsa_auctions_getGet auction details by ID
bolsa_auctions_createCreate a new auction
bolsa_auctions_updateUpdate an existing auction
bolsa_auctions_deleteDelete an auction
bolsa_auctions_publishPublish auction to marketplace
bolsa_auctions_accept_bidAccept a bid on an auction
bolsa_auctions_sign_cmrSign CMR waybill for auction
bolsa_auctions_favoritesManage favorite auctions
bolsa_addresses_listList all addresses
bolsa_addresses_createCreate a new address
bolsa_addresses_updateUpdate an address
bolsa_addresses_deleteDelete an address

How to install the Bolsa De Carga MCP MCP server

Or in your MCP client config:

```json
{
  "mcpServers": {
    "bolsa-de-carga": {
      "command": "...",
      "env": {
        "API_KEY": "your-api-key-from-cia"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Bolsa De Carga MCP to Email.
  • Use Bolsa De Carga MCP to bolsa auctions active.
  • Use Bolsa De Carga MCP to bolsa auctions get.

Frequently asked questions

It connects Bolsa De Carga MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (Email, bolsa_auctions_active, bolsa_auctions_get, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Bolsa De Carga MCP directly.