ShippingRates MCP Server
⚓ ShippingRates MCP Server
Containerfracht-Intelligenz für KI-Agenten – Demurrage & Detention, lokale Gebühren, Inlandstransport, CFS-Tarife. Pay-per-Request mit USDC über x402.
Kurzstart
Füge ShippingRates zu Claude Desktop, Cursor oder einem anderen MCP-kompatiblen Client hinzu:
{
"mcpServers": {
"shippingrates": {
"url": "https://mcp.shippingrates.org/mcp"
}
}
}Das war's. 9 Tools automatisch entdeckt. 3 kostenlos + 6 kostenpflichtig über x402.
Related MCP server: dyoe-agent-tools-mcp
Neuerungen in v2.1.0
Zwei-Ketten-Zahlungen — Base Mainnet (EVM) + Solana Mainnet
Gestaffelte Preisgestaltung — 0,03 bis 0,25 $ pro Aufruf, je nach Datenkomplexität
PayAI Facilitator — Kostenlos, kein API-Schlüssel für die Zahlungsabwicklung erforderlich
23/23 Endpunkte verifiziert — Vollständiger Produktions-Health-Check bestanden
2.547+ Datensätze über 14 Datenbanktabellen
Serverkarte unter
/.well-known/mcp/server-card.jsonzur automatischen ErkennungLive-Analytics-Dashboard mit Echtzeit-Zahlungsverfolgung
Gelistet in Offiziellem MCP Registry, Smithery, Glama, mcp.so, x402scan
Tools
Kostenpflichtig (USDC über x402)
Tool | Preis | Beschreibung |
| 0,10 $ | Berechnung der Demurrage- & Detention-Kosten – freie Tage, Tagessätze, Staffelung, Gesamtkosten |
| 0,25 $ | Vergleich der D&D-Kosten aller 6 Reedereien in einem Aufruf. Kein Mitbewerber bietet dies. |
| 0,05 $ | Lokale Hafengebühren – THC, Dokumentationsgebühren, BL-Gebühren, Siegelgebühren |
| 0,03 $ | Suche nach Inlandstransportrouten nach Start-/Zielort |
| 0,05 $ | Containerfrachtstation-Umschlagtarife nach Frachtgutart |
| 0,05 $ | Inlandstransporttarife – LKW/Bahn vom Hafen zum Zielort |
Kostenlos
Tool | Beschreibung |
| Auflistung aller 6 Reedereien mit Datensatzzahlen pro Land |
| Datenbankstatistiken – Datensätze, Abdeckung, Preise, letztes Update |
| Serverstatus, Version, Netzwerkkonfiguration |
Zahlung
ShippingRates verwendet das x402-Protokoll – den nativen Zahlungsstandard des Internets für KI-Agenten.
Währung: USDC (Stablecoin, immer 1,00 $)
Netzwerke: Base Mainnet (EVM) + Solana Mainnet
Facilitator: PayAI – kostenlos, kein API-Schlüssel erforderlich
Abrechnung: Sofort (~200 ms)
Keine API-Schlüssel, keine Konten, keine Abonnements
Dein Agent sendet eine Anfrage → erhält HTTP 402 mit Zahlungsbedingungen → signiert die USDC-Zahlung → wiederholt mit Nachweis → erhält Daten. Alles automatisch von den x402-Clientbibliotheken verarbeitet.
Unterstützte x402-Clientbibliotheken
TypeScript:
@x402/fetchoder@x402/axiosPython:
x402-Paket (httpx / requests)Go:
x402-Go-Modul
Zahlungs-Wallets
Netzwerk | Adresse |
Base (EVM) |
|
Solana |
|
Datenabdeckung
Metrik | Wert |
Reedereien | 6 – Maersk, MSC, CMA-CGM, Hapag-Lloyd, ONE, COSCO |
Datensätze | 2.547+ verifizierte Tarifeinträge über 14 Tabellen |
Länder | 9 – IN, AE, SG, CN, MY, LK, PK, BD, TH |
Containertypen | 20DV, 40DV, 40HC, 20RF, 40RF, 20OT, 40OT, 20FR, 40FR |
Datenqualität | 100 % manuell verifiziert anhand offizieller Reederei-PDFs |
Datentabellen | dd_tariffs, local_charges, inland_haulage, cfs_tariffs, ports und mehr |
API-Zugriff
Für die direkte API-Integration (ohne MCP):
Ressource | URL |
API-Basis-URL |
|
Vollständige Dokumentation |
|
LLMs.txt |
|
x402-Erkennung |
|
MCP-Server |
|
MCP-Serverkarte |
|
Health-Check |
|
Beispiel: D&D-Berechnung
# Free endpoint — no payment needed
curl https://api.shippingrates.org/api/stats
# Paid endpoint — returns HTTP 402 with payment instructions
curl -X POST https://api.shippingrates.org/api/dd/calculate \
-H "Content-Type: application/json" \
-d '{"line": "maersk", "country": "IN", "container_type": "40HC", "days": 14}'Beispielantwort (D&D-Berechnung)
{
"line": "maersk",
"country": "IN",
"container_type": "40HC",
"days": 14,
"free_days": 4,
"currency": "USD",
"slabs": [
{ "from": 5, "to": 7, "rate_per_day": 7.5, "days": 3, "cost": 22.5 },
{ "from": 8, "to": 14, "rate_per_day": 15, "days": 7, "cost": 105 }
],
"total_cost": 127.5
}Beispielantwort (D&D-Vergleich)
{
"country": "IN",
"container_type": "40HC",
"days": 14,
"comparisons": [
{ "line": "maersk", "total_cost": 127.5, "free_days": 4, "currency": "USD" },
{ "line": "msc", "total_cost": 150.0, "free_days": 3, "currency": "USD" },
{ "line": "cosco", "total_cost": 95.0, "free_days": 7, "currency": "USD" }
],
"cheapest": "cosco",
"savings_vs_most_expensive": 55.0
}Architektur
┌─────────────────────────────────────────────────────┐
│ AI Agent / Client │
│ (Claude, Cursor, ChatGPT, etc.) │
└──────────────┬──────────────────────┬───────────────┘
│ MCP │ HTTP + x402
▼ ▼
┌──────────────────────┐ ┌──────────────────────────┐
│ MCP Server v1.1.0 │ │ API Server v2.1.0 │
│ mcp.shippingrates │──│ api.shippingrates.org │
│ .org:3480 │ │ :3402 │
└──────────────────────┘ └────────────┬─────────────┘
│
┌────────────▼─────────────┐
│ Shipping Intelligence DB │
│ SQLite — 14 tables │
│ 2,547+ verified records │
└──────────────────────────┘MCP-Server — TypeScript,
@modelcontextprotocol/sdk, Streamable-HTTP-TransportAPI-Server — TypeScript, Express.js, x402 v2 SDK mit PayAI Facilitator
Datenbank — SQLite mit Daten aus offiziellen Reederei-Tarif-PDFs
Infrastruktur — PM2-Prozessmanager, Cloudflare-Tunnel, Neustart-sicher
Anwendungsfälle
Spediteure, die Strafkosten vor der Buchung schätzen
KI-Agenten, die Container-Abholpläne optimieren, um D&D-Gebühren zu minimieren
Logistikunternehmen, die Reedereien vergleichen, um die günstigste Option zu finden
Handelsfinanzierung, die Kostenrisiken bei Importvorgängen bewertet
Lieferkettenplattformen, die Echtzeit-D&D-Daten integrieren
Erkennung & Verzeichnisse
ShippingRates ist gelistet in:
Verzeichnis | Status |
✅ Live — | |
✅ Eingereicht | |
✅ Eingereicht | |
✅ Eingereicht | |
✅ Indiziert — 6 Ressourcen automatisch entdeckt |
Über uns
Erstellt von SmartBiz AI — KI-Lösungen für die kommerzielle Schifffahrt, mit Sitz in Mumbai, Indien.
ShippingRates ist die weltweit erste x402-native Schifffahrtsdaten-API, die speziell für KI-Agenten und autonomen Handel entwickelt wurde.
Links
🌐 Website
Lizenz
Dieses Repository enthält ausschließlich Dokumentation und Verbindungskonfiguration. Der ShippingRates-API- und MCP-Server sind kommerzielle Dienste, die von SmartBiz AI betrieben werden.
Die Nutzung der API unterliegt der Pay-per-Request-Preisgestaltung über das x402-Protokoll.
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
AlicenseAqualityBmaintenancePre-trade DeFi intelligence for AI agents. 20 paid x402 endpoints, USDC on Base.23561MIT- FlicenseAqualityCmaintenancePay-per-call tools for AI agents including trust checks, due diligence, market data, and human-verified approvals, settled in USDC on Base via the x402 protocol.16
- AlicenseAqualityCmaintenanceEnables AI agents to access crypto/web3 data across 5 chains with pay-per-call billing in USDC via x402, no API key required, and built-in spend caps.3636MIT

@hpp-io/x402-mcp-bridgeofficial
Alicense-qualityBmaintenanceEnables AI agents to autonomously pay for and discover services using HPP USDC.e over the x402 protocol, without API keys or manual signing.167Apache 2.0
Related MCP Connectors
Pay-per-use weather, environment, finance, and on-chain intelligence tools for AI agents via x402.
30 pay-per-call APIs for AI agents: compliance, trade, safety, web, data. USDC on Base via x402.
Token swaps and honeypot/rug checks for AI agents on 8 chains, paid per-call in USDC via x402.
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/vinaybhosle/shippingrates-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server