Skip to main content
Glama
vinaybhosle

ShippingRates MCP Server

by vinaybhosle

⚓ ShippingRates MCP Server

AIエージェント向けコンテナ海運インテリジェンス — デマレージ&デテンション、現地諸費用、内陸運送、CFS料金。x402を介したUSDCによる従量課金制。

MCP x402 Networks Version Status

クイックスタート

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)

ツール

価格

説明

dd_calculate

$0.10

デマレージ&デテンション費用の計算 — フリーデイズ、日割り料金、段階別内訳、総費用

dd_compare

$0.25

1回の呼び出しで6つの海運会社すべてのD&D費用を比較。競合他社にはない機能です。

local_charges

$0.05

港湾現地諸費用 — THC、書類手数料、船荷証券手数料、シール手数料

inland_search

$0.03

発地/着地による内陸輸送ルートの検索

cfs_tariffs

$0.05

貨物タイプ別のコンテナフレイトステーション取扱料金

inland_haulage

$0.05

内陸運送料金 — 港から目的地までのトラック/鉄道輸送

無料

ツール

説明

list_lines

6つの海運会社すべてを国別レコード数とともに一覧表示

get_stats

データベース統計 — レコード数、カバレッジ、価格、最終更新日

health_check

サーバーステータス、バージョン、ネットワーク設定

支払い

ShippingRatesはx402プロトコルを使用しています — AIエージェントのためのインターネットネイティブな支払い標準です。

  • 通貨: USDC(ステーブルコイン、常に$1.00)

  • ネットワーク: Base Mainnet(EVM)+ Solana Mainnet

  • ファシリテーター: PayAI — 無料、APIキー不要

  • 決済: 即時(約200ms)

  • APIキー、アカウント、サブスクリプションは不要

エージェントがリクエストを送信 → 支払い条件付きのHTTP 402を受信 → USDC支払いに署名 → 証明書付きで再試行 → データを取得。すべてx402クライアントライブラリによって自動処理されます。

対応x402クライアントライブラリ

  • TypeScript: @x402/fetch または @x402/axios

  • Python: x402 パッケージ(httpx / requests)

  • Go: x402 Goモジュール

支払いウォレット

ネットワーク

アドレス

Base(EVM)

0x8c9e0882b4c6e6568fe76F16D59F7E080465E5C8

Solana

Gcv56hKWuEGmXheBpJxAwQxvX6QAMimZzzVrHaVCbNWE

データカバレッジ

指標

海運会社

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ベース

https://api.shippingrates.org

完全ドキュメント

https://api.shippingrates.org/llms-full.txt

LLMs.txt

https://api.shippingrates.org/llms.txt

x402ディスカバリー

https://api.shippingrates.org/.well-known/x402.json

MCPサーバー

https://mcp.shippingrates.org/mcp

MCPサーバーカード

https://mcp.shippingrates.org/.well-known/mcp/server-card.json

ヘルスチェック

https://api.shippingrates.org/health

例: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は以下に掲載されています:

ディレクトリ

ステータス

Official MCP Registry

✅ 公開中 — io.github.vinaybhosle/shippingrates-mcp-server

Smithery

✅ 提出済み

Glama

✅ 提出済み

mcp.so

✅ 提出済み

x402scan

✅ インデックス登録済み — 6つのリソースが自動検出

概要

SmartBiz AI によって構築 — インド・ムンバイを拠点とする、商業海運向けAIソリューション。

ShippingRatesは、AIエージェントと自律型コマース向けに特別に構築された、世界初のx402ネイティブ海運データAPIです。

リンク

ライセンス

このリポジトリには、ドキュメントと接続設定のみが含まれています。ShippingRates APIおよびMCPサーバーは、SmartBiz AIが運営する商用サービスです。

APIの使用は、x402プロトコルを介した従量課金制の対象となります。

F
license - not found
-
quality - not tested
D
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

View all related MCP servers

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.

View all MCP Connectors

Latest Blog Posts

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