Adopte un Conteneur — Container Delivery Calculator
OfficialAdopte un Conteneur — MCP Server
Two AI tools for maritime container logistics in France, available via Model Context Protocol (MCP).
Tools
1. calculateContainerDeliveryCost
Calculates real-time delivery costs for maritime containers anywhere in France.
Automatically selects the most economical depot (Toulouse, Lyon, Le Havre, Bordeaux, Fos-sur-Mer, etc.)
Returns real HT and TTC prices from the live pricing engine
Provides available depot alternatives
Input:
{
"delivery_address": "69001 Lyon",
"container_type": "20ft",
"quantity": 1
}Parameter | Type | Required | Values |
| string | ✅ | Any French address or city |
| string | ✅ |
|
| integer | ✅ | 1 to 99 |
Output example:
{
"success": true,
"delivery_address": "69001 Lyon, France",
"container_type": "20ft",
"quantity": 1,
"selected_depot": "Lyon",
"distance_km": 9,
"total_cost_eur": 245,
"total_cost_ttc": 294,
"currency": "EUR",
"vat_rate": "20%",
"human_readable": "Livraison de 1 conteneur 20ft depuis Lyon (9 km) vers 69001 Lyon, France : 245 € HT / 294 € TTC.",
"alternatives": [
{ "depot": "Fos-sur-Mer", "distance_km": 317, "total_cost_eur": 1010 }
],
"links": {
"calculator": "https://adopte-un-conteneur.fr/calculateur-cout-livraison-containers/",
"order": "https://adopte-un-conteneur.fr/boutique/"
}
}2. getContainerDimensions
Returns interior and exterior dimensions, volumes, surfaces and weights for all container types.
Filter by type, size, minimum volume or minimum surface
Includes combined surface data for multiple containers placed side by side
Covers: storage containers, dry maritime, high cube and refrigerated (reefer)
Input (all parameters optional):
{
"type": "dry",
"size": "20ft",
"min_volume_m3": 30,
"min_surface_m2": 13,
"quantity": 2
}Parameter | Type | Required | Values |
| string | ❌ |
|
| string | ❌ |
|
| number | ❌ | Minimum interior volume in m³ |
| number | ❌ | Minimum interior surface in m² |
| integer | ❌ |
|
Output example:
{
"success": true,
"count": 1,
"containers": [
{
"type": "dry",
"size": "20ft",
"label": "Container maritime Dry 20 pieds",
"interieur": { "longueur_m": 5.9, "largeur_m": 2.35, "hauteur_m": 2.39 },
"exterieur": { "longueur_m": 6.06, "largeur_m": 2.44, "hauteur_m": 2.59 },
"volume_m3": 33.14,
"surface_m2": 13.86,
"poids_vide_kg": 2200
}
],
"links": {
"page": "https://adopte-un-conteneur.fr/a-propos-des-containers/dimensions-tailles-volumes-surfaces-poids-des-conteneurs/",
"boutique": "https://adopte-un-conteneur.fr/boutique/"
}
}Related MCP server: MCP server for SYMONE
MCP Server Endpoint
https://adopte-un-conteneur.fr/api/v1/mcp-server.phpProtocol: MCP JSON-RPC 2.0 over HTTP Method: POST Authentication: None (public endpoint)
Quick Tests
List available tools:
curl -X POST https://adopte-un-conteneur.fr/api/v1/mcp-server.php \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'Calculate a delivery cost:
curl -X POST https://adopte-un-conteneur.fr/api/v1/mcp-server.php \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "calculateContainerDeliveryCost",
"arguments": {
"delivery_address": "69001 Lyon",
"container_type": "20ft",
"quantity": 1
}
}
}'Get dimensions of all High Cube containers:
curl -X POST https://adopte-un-conteneur.fr/api/v1/mcp-server.php \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 3,
"method": "tools/call",
"params": {
"name": "getContainerDimensions",
"arguments": {
"type": "high_cube"
}
}
}'Get combined surface for 3 containers of 20ft placed side by side:
curl -X POST https://adopte-un-conteneur.fr/api/v1/mcp-server.php \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 4,
"method": "tools/call",
"params": {
"name": "getContainerDimensions",
"arguments": {
"size": "20ft",
"quantity": 3
}
}
}'Additional Resources
Resource | URL |
Website | |
AI landing page | |
OpenAPI spec | |
MCP manifest | |
AI discovery | |
Dimensions page |
About
Adopte un Conteneur is a French logistics company specialising in maritime container sales and delivery across France.
🌐 Website: adopte-un-conteneur.fr
📧 Contact: contact@adopte-un-conteneur.fr
📞 Tel: 07 80 90 19 89
💬 WhatsApp: wa.me/33780901989
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityAmaintenanceAI-powered route optimization MCP server for heavy vehicles and logistics. Calculate truck-optimized routes, predict traffic congestion with LSTM neural networks, compute toll costs, fuel costs and CO2 emissions, find truck stops and check weather along any European route.Last updatedMIT
- Alicense-qualityCmaintenanceMCP server for SYMONE — search motorcycle transport routes in France. Paris↔Marseille from 299€. No auth required.Last updated24MIT
- Flicense-qualityBmaintenanceEnables Claude to search and analyze product listings from multiple French marketplaces, evaluating price, delivery, and distance to a reference point to find the best value.Last updated
- Alicense-qualityCmaintenancePlan optimal container & truck loads: 3D layouts, right-size the container mix, and check utilization, centre of gravity, crush protection and securing across 200+ equipment types.Last updated16MIT
Related MCP Connectors
Neutral freight reference + validation layer for AI agents: ADR, HS, UN/LOCODE, freight math
DCSA container tracking across 228 ocean carriers: live vessel positions, ETAs, demurrage alerts.
French address quality, geocoding & routing from official data (BAN, INSEE, OpenStreetMap).
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/adopteunconteneur/mcp-container-delivery'
If you have feedback or need assistance with the MCP directory API, please join our Discord server