Back to MCP directory
publicPublicdnsLocal runtime

ShippingTracker

一个基于SweetTracker API的韩国快递查询MCP服务器,提供快递公司列表查询和运单号追踪功能。

article

README

🚀 ShippingTracker MCP Server

这是一个用于查询韩国快递配送信息的MCP(Model Context Protocol)服务器。它借助SweetTracker API来查询快递公司列表和运单号信息。

🚀 快速开始

本地开发

  1. 克隆仓库
git clone https://github.com/gws8820/shippingtracker.git
cd shippingtracker
  1. 设置环境变量
echo "SWEETTRACKER_API_KEY=YOUR_API_KEY" > .env
  1. 运行项目
uv run python -m shippingtracker.main

# 或者使用uvx运行
uvx --from . shippingtracker

与Claude Desktop连接

请将Claude Desktop的配置文件(claude_desktop_config.json)设置如下:

{
  "mcpServers": {
    "shippingtracker": {
      "command": "uvx",
      "args": ["shippingtracker"],
      "env": {
        "SWEETTRACKER_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}

✨ 主要特性

  • get_company_list():查询支持的快递公司列表
  • track_shipping(company_code, tracking_invoice):查询配送信息

📦 安装指南

前置要求

📄 许可证

本项目根据MIT许可证进行分发。

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client