ShippingRates MCP Server
⚓ ShippingRates MCP Server
AIエージェント向けコンテナ海運インテリジェンス — デマレージ&デテンション、現地諸費用、内陸運送、CFS料金。x402を介したUSDCによる従量課金制。
クイックスタート
Claude Desktop、Cursor、またはMCP互換クライアントにShippingRatesを追加します:
{
"mcpServers": {
"shippingrates": {
"url": "https://mcp.shippingrates.org/mcp"
}
}
}これだけです。9つのツールが自動検出されます。3つは無料、6つはx402経由の有料です。
Related MCP server: dyoe-agent-tools-mcp
v2.1.0の新機能
デュアルチェーン決済 — Base Mainnet(EVM)+ Solana Mainnet
段階的価格設定 — データの複雑さに応じて1コールあたり$0.03~$0.25
PayAIファシリテーター — 無料、決済処理にAPIキー不要
23/23のエンドポイント検証済み — 本番環境のヘルスチェック完了
2,547件以上のレコード — 14のデータベーステーブルにわたる
サーバーカード —
/.well-known/mcp/server-card.jsonで自動検出に対応ライブ分析ダッシュボード — リアルタイムの支払い追跡機能
掲載先 — Official MCP Registry、Smithery、Glama、mcp.so、x402scan
ツール
有料(x402経由のUSDC)
ツール | 価格 | 説明 |
| $0.10 | デマレージ&デテンション費用の計算 — フリーデイズ、日割り料金、段階別内訳、総費用 |
| $0.25 | 1回の呼び出しで6つの海運会社すべてのD&D費用を比較。競合他社にはない機能です。 |
| $0.05 | 港湾現地諸費用 — THC、書類手数料、船荷証券手数料、シール手数料 |
| $0.03 | 発地/着地による内陸輸送ルートの検索 |
| $0.05 | 貨物タイプ別のコンテナフレイトステーション取扱料金 |
| $0.05 | 内陸運送料金 — 港から目的地までのトラック/鉄道輸送 |
無料
ツール | 説明 |
| 6つの海運会社すべてを国別レコード数とともに一覧表示 |
| データベース統計 — レコード数、カバレッジ、価格、最終更新日 |
| サーバーステータス、バージョン、ネットワーク設定 |
支払い
ShippingRatesはx402プロトコルを使用しています — AIエージェントのためのインターネットネイティブな支払い標準です。
通貨: USDC(ステーブルコイン、常に$1.00)
ネットワーク: Base Mainnet(EVM)+ Solana Mainnet
ファシリテーター: PayAI — 無料、APIキー不要
決済: 即時(約200ms)
APIキー、アカウント、サブスクリプションは不要
エージェントがリクエストを送信 → 支払い条件付きのHTTP 402を受信 → USDC支払いに署名 → 証明書付きで再試行 → データを取得。すべてx402クライアントライブラリによって自動処理されます。
対応x402クライアントライブラリ
TypeScript:
@x402/fetchまたは@x402/axiosPython:
x402パッケージ(httpx / requests)Go:
x402Goモジュール
支払いウォレット
ネットワーク | アドレス |
Base(EVM) |
|
Solana |
|
データカバレッジ
指標 | 値 |
海運会社 | 6社 — Maersk、MSC、CMA-CGM、Hapag-Lloyd、ONE、COSCO |
レコード数 | 14テーブルにわたる2,547件以上の検証済み料金エントリ |
対象国 | 9か国 — IN、AE、SG、CN、MY、LK、PK、BD、TH |
コンテナタイプ | 20DV、40DV、40HC、20RF、40RF、20OT、40OT、20FR、40FR |
データ品質 | 公式キャリアPDFから100%手動検証済み |
データテーブル | dd_tariffs、local_charges、inland_haulage、cfs_tariffs、portsなど |
APIアクセス
直接API統合用(MCPなし):
リソース | URL |
APIベース |
|
完全ドキュメント |
|
LLMs.txt |
|
x402ディスカバリー |
|
MCPサーバー |
|
MCPサーバーカード |
|
ヘルスチェック |
|
例:D&D計算
# 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}'レスポンス例(D&D計算)
{
"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
}レスポンス例(D&D比較)
{
"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
}アーキテクチャ
┌─────────────────────────────────────────────────────┐
│ 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サーバー — TypeScript、
@modelcontextprotocol/sdk、Streamable HTTPトランスポートAPIサーバー — TypeScript、Express.js、PayAIファシリテーター付きx402 v2 SDK
データベース — 公式キャリア料金PDFからのデータを含むSQLite
インフラストラクチャ — PM2プロセスマネージャー、Cloudflare Tunnel、再起動耐性
ユースケース
フォワーダー — 予約前にペナルティコストを見積もる
AIエージェント — D&D費用を最小化するためにコンテナ引き取りスケジュールを最適化
物流会社 — 最も安いオプションを見つけるためにキャリアを比較
貿易金融 — 輸入業務におけるコストリスクを評価
サプライチェーンプラットフォーム — リアルタイムのD&Dデータを統合
ディスカバリーとディレクトリ
ShippingRatesは以下に掲載されています:
ディレクトリ | ステータス |
✅ 公開中 — | |
✅ 提出済み | |
✅ 提出済み | |
✅ 提出済み | |
✅ インデックス登録済み — 6つのリソースが自動検出 |
概要
SmartBiz AI によって構築 — インド・ムンバイを拠点とする、商業海運向けAIソリューション。
ShippingRatesは、AIエージェントと自律型コマース向けに特別に構築された、世界初のx402ネイティブ海運データAPIです。
リンク
ライセンス
このリポジトリには、ドキュメントと接続設定のみが含まれています。ShippingRates APIおよびMCPサーバーは、SmartBiz AIが運営する商用サービスです。
APIの使用は、x402プロトコルを介した従量課金制の対象となります。
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