Datalastic Vessel Tracking
官方用於追蹤船舶、分析港口及探索船隻資料的海事情報。
你可以用 Datalastic Vessel Tracking MCP 做什麼?
- 即時追蹤船舶 — 使用
get_vessel或get_vessel_pro查詢船舶的即時位置、速度、航向及目的地。 - 搜尋船舶註冊資料 — 透過
find_vessels依名稱、類型、船旗、噸位或尺寸尋找船舶,並使用get_vessel_info取得完整規格。 - 監控特定區域 — 使用
get_vessels_in_radius列出某個點、港口或船舶周圍半徑內的所有船舶。 - 取得海洋氣象 — 使用
get_weather查詢任何地點的當前天氣狀況或 7 天預報。 - 查詢港口詳細資訊 — 透過
find_ports依港口名稱或 UN/LOCODE 搜尋港口,並使用get_port取得碼頭、營運商及座標。 - 存取海事情報 — 啟用海事報告附加功能後,可查詢船舶所有權、檢驗記錄、事故、乾塢排程、引擎規格或買賣歷史。
文件
Datalastic MCP 伺服器
官方 Model Context Protocol (MCP) 伺服器,專為 Datalastic 提供即時船舶追蹤、港口資料、海洋天氣和海事情報,適用於任何相容 MCP 的 AI 客戶端。
概覽
Datalastic MCP 伺服器提供 25 個工具,涵蓋六大類別:
- 即時船舶位置 — 透過 MMSI、IMO 或船名即時追蹤船舶
- 船舶登記 — 超過 750,000 艘船舶的規格、尺寸、船旗和噸位
- 港口資料 — 全球港口和碼頭目錄,包含 UN/LOCODE
- 區域搜尋 — 目前位於任何點或港口特定半徑內的所有船舶
- 海洋天氣 — 任何地點的當前狀況和 7 天天氣預報
- 海事情報 (海事報告附加元件) — 所有權、檢查、事故、乾塢、引擎規格、買賣交易
伺服器運行於 mcp.datalastic.com — 無需本機安裝。
入門指南
使用您的 Datalastic 帳戶登入
無需 API 金鑰。只需在您的客戶端中將 https://mcp.datalastic.com/mcp 新增為伺服器 URL,無需標頭或憑證。當您連線時,客戶端會自動開啟瀏覽器視窗,讓您使用 Datalastic 帳戶登入。一旦您核准,即完成連線 — 客戶端會處理其餘一切。
若要中斷連線,請使用 MCP 客戶端中的中斷連線選項,或從您的 Datalastic 帳戶設定 撤銷存取權限。
API 金鑰
在 datalastic.com/pricing 註冊並訂閱方案。您的 API 金鑰會透過電子郵件寄送,並顯示在您的帳戶儀表板中。
對於支援在設定檔中使用自訂請求標頭的客戶端,請使用下方客戶端設定章節中的範例。對於 Claude Code,請改用 CLI 指令。
客戶端設定
Claude Code
執行此指令以使用您的 API 金鑰新增伺服器:
claude mcp add --scope user --transport http datalastic https://mcp.datalastic.com/mcp --header "X-Api-Key: YOUR_API_KEY"
對於 Claude Desktop,請使用 OAuth(上方使用您的 Datalastic 帳戶登入)— 尚不支援透過設定檔進行自訂標頭驗證。
Cursor
編輯 ~/.cursor/mcp.json:
{
"mcpServers": {
"datalastic": {
"type": "http",
"url": "https://mcp.datalastic.com/mcp",
"headers": {
"X-Api-Key": "YOUR_API_KEY"
}
}
}
}
VS Code (GitHub Copilot)
在您的工作區中編輯 .vscode/mcp.json,或編輯您的使用者層級 mcp.json:
{
"servers": {
"datalastic": {
"type": "http",
"url": "https://mcp.datalastic.com/mcp",
"headers": {
"X-Api-Key": "YOUR_API_KEY"
}
}
}
}
Windsurf
編輯 ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"datalastic": {
"type": "http",
"url": "https://mcp.datalastic.com/mcp",
"headers": {
"X-Api-Key": "YOUR_API_KEY"
}
}
}
}
Gemini CLI
編輯 ~/.gemini/settings.json:
{
"mcpServers": {
"datalastic": {
"httpUrl": "https://mcp.datalastic.com/mcp",
"headers": {
"X-Api-Key": "YOUR_API_KEY"
}
}
}
}
任何 Streamable HTTP 客戶端
URL: https://mcp.datalastic.com/mcp
Header: X-Api-Key: YOUR_API_KEY
工具
所有方案均可使用 13 個工具。啟用 海事報告 附加元件後,可使用另外 11 個工具。
船舶追蹤
| 工具 | 說明 |
|---|---|
get_vessel | 單一船舶的即時位置、速度、航向和航行狀態 |
get_vessel_pro | 類似 get_vessel,外加已識別的目的港、預計到達時間、實際離港時間和吃水深度 |
get_vessel_info | 靜態規格:尺寸、噸位、載貨能力、建造年份、船旗、呼號 |
find_vessels | 按名稱、類型、船旗、噸位或尺寸搜尋船舶登記 |
get_vessels_bulk | 單次呼叫最多 100 艘船舶的即時位置 |
get_vessel_history | 船舶的歷史 AIS 軌跡(資料自 2021-08-10 起可用) |
選擇正確的船舶工具: 先使用
get_vessel取得即時位置。僅在需要目的港、預計到達時間或吃水深度時,才使用get_vessel_pro。
港口
| 工具 | 說明 |
|---|---|
find_ports | 按名稱、UN/LOCODE、國家、類型或座標搜尋港口登記 |
get_port | 完整港口詳細資訊,包括碼頭、營運商、地址和座標 |
區域與天氣
| 工具 | 說明 |
|---|---|
get_vessels_in_radius | 目前位於某點、港口或船舶特定半徑(最大 50 海浬)內的所有船舶 |
get_weather | 任何地點的海洋天氣 — 當前狀況和/或 7 天天氣預報 |
海事情報 (海事報告附加元件)
| 工具 | 說明 |
|---|---|
intel_ownership | 受益所有人、營運商、技術和商業管理者、P&I 保險協會 |
intel_inspections | 港口國管制檢查記錄 — 扣留和缺失 |
intel_casualties | 已記錄的事故:擱淺、碰撞、火災、機械故障 |
intel_drydock | 下次乾塢日期、特別檢驗日期和 IOPP 證書到期日 |
intel_class | 船級社、主要尺寸和下次檢驗日期 |
intel_engine | 主機型號、製造商、推進類型和最大連續輸出功率 |
intel_spd | 買賣和拆解交易 — 買方、賣方、申報價格 |
intel_companies | 海事公司簡介:船東、營運商、管理者及聯絡方式 |
sea_route | 兩個港口或座標之間的示意航線和距離(公里/海浬)。用於距離估算和視覺化 — 不適用於真實世界導航。 |
estimated_vessel_position | 超出地面 AIS 範圍(開放海域)船舶的估計當前位置 |
intel_report_request | 提交任何海事報告資料集的完整批量匯出 |
沒有附加元件? 當您的方案不包含海事報告時,會顯示
intel_info工具。它會說明附加元件提供的內容以及如何啟用。一旦您升級,情報工具會在同一工作階段自動出現 — 無需重新連線。
批量報告 (非同步)
| 工具 | 說明 |
|---|---|
report_request | 提交非同步匯出:vessel_list、port_list、inradius_history 或 request_usage |
report_status | 輪詢報告作業;完成時返回下載 URL |
report_list | 列出您最近的報告作業和狀態 |
報告以非同步方式產生,可能需要幾分鐘時間。伺服器會返回
result_url供下載 — 它本身不會擷取檔案。某些匯出(完整船舶清單、區域歷史記錄)可能很大,並會消耗 API 點數。
提示範例
Where is the MSC Oscar right now and what is its destination?
Show me all tankers within 20 nautical miles of Rotterdam.
What is the weather forecast at the Port of Singapore for the next 7 days?
Who is the beneficial owner of IMO 9839179?
Get the Port State Control inspection history for the Ever Given.
What is the sea route distance from Shanghai to Los Angeles?
Find all bulk carriers built after 2018 flagged in the Marshall Islands.
Which vessels does Maersk operate?
Show me all vessels with dry docks scheduled in the next 30 days.
What incidents has this tanker been involved in over the past 5 years?