fitconverter

运动健康转换工具。华为、Zepp、小米、vivo、三星、Keep、悦跑圈、RQrun、动动、行者运动记录导出后,可通过运动健康转换工具转换成fit、tcx、gpx、kml格式文件同步导入高驰、佳明、RQrun、Strava等主流运动平。 运动记录转换工具、运动记忆、运动数据转换、fitconverter、华为运动数据、小米运动数据、Zepp跑步记录、Keep数据导出、转换fit、转换tcx

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "fitconverter" with this command: npx skills add daozhao/fitconverter

FitConverter 运动数据转换

通过 MCP + HTTP 协议调用 FitConverter 服务,将运动数据从一个平台转换到另一个平台。

1. 新用户必读

⚠️ 首次使用需要获取 API Key

  1. 访问 https://api.fitconverter.com/mcp/generate-api-key 获取 API Key
  2. 告诉我你的 API Key,我会帮你配置
  3. 或者手动配置 mcporter(见下文)

2. 配置 API Key

方式一:对话中配置(推荐)

直接告诉我你的 API Key:

我的 FitConverter API Key 是 fc_mcp_xxxxxx

我会自动帮你配置。

方式二:手动配置 mcporter

编辑 ~/.mcporter/mcporter.json,添加:

{
  "mcpServers": {
    "fitconverter": {
      "baseUrl": "https://api.fitconverter.com/mcp",
      "headers": {
        "Authorization": "Bearer 你的API_KEY"
      }
    }
  }
}

3. 使用方式

配置完成后,直接对话即可:

帮我把华为的运动数据转到高驰
我要把 Keep 的记录转到佳明
转换 GPX 文件到 FIT 格式

4. 支持的平台

数据源(type)

  • 文件类型:huawei, zepp, xiaomi, vivo, keep, samsung, dongdong, kml, gpx, tcx, fit
  • 同步类型:zepp_sync, keep_sync, codoon_sync, joyrun_sync, xingzhe_sync, garmin_sync_coros

目标平台(destination)

coros, garmin, strava, rqrun, huawei, keep, shuzixindong, xingzhe, igpsport, onelap, fit, tcx, gpx, kml


5. Agent 执行流程

5.1 检查配置

  1. 检查 mcporter 是否已配置 fitconverter 服务器
  2. 若未配置,引导用户访问 https://api.fitconverter.com/mcp/generate-api-key 获取 API Key

5.2 调用 MCP 工具

# 列出支持的平台
mcporter call fitconverter.list_platforms
# 查询转换状态
mcporter call fitconverter.get_conversion_status

5.3 提交转换任务

⚠️ 重要zip_file使用 multipart/form-data 上传文件(不是路径,不是Base64):

curl -X POST "https://api.fitconverter.com/mcp/submit_conversion" \
  -H "Authorization: Bearer fc_mcp_xxx" \
  -F "api_key=fc_mcp_xxx" \
  -F "type=huawei" \
  -F "destination=coros" \
  -F "address=user@example.com" \
  -F "zip_file=@/path/to/upload.zip"

Node.js 示例:

const FormData = require('form-data');
const fs = require('fs');
const https = require('https');

const form = new FormData();
form.append('api_key', 'fc_mcp_xxx');
form.append('type', 'huawei');
form.append('destination', 'coros');
form.append('address', 'user@example.com');
form.append('zip_file', fs.createReadStream('/path/to/upload.zip'));

const options = {
  hostname: 'api.fitconverter.com',
  port: 443,
  path: '/mcp/submit_conversion',
  method: 'POST',
  headers: {
    'Authorization': 'Bearer fc_mcp_xxx',
    ...form.getHeaders()
  }
};

const req = https.request(options, (res) => {
  let data = '';
  res.on('data', (chunk) => { data += chunk; });
  res.on('end', () => { console.log(data); });
});

form.pipe(req);

返回示例:

{
  "status": "payment_required",
  "order_id": "fitId_xxx",
  "qr_image_url": "https://file.fitconverter.com/qr/qr-xxx.png",
  "code_url": "weixin://wxpay/bizpayurl?pr=xxx",
  "amount": "1.00",
  "message": "需要微信支付"
}

5.4 查询转换状态

mcporter call fitconverter.get_conversion_status --args '{
  "api_key": "fc_mcp_xxx",
  "order_id": "fitId_xxx"
}'

6. 返回状态处理

status含义操作
payment_required需要支付展示二维码,引导用户支付
pending_payment等待支付中轮询 get_conversion_status
submitted提交成功告知用户等待邮件通知
error错误返回错误信息

7. 支付二维码展示

当返回 qr_image_url 时,使用 message 工具发送图片:

message({
  action: "send",
  channel: "discord",
  target: "user:用户ID",
  media: "https://file.fitconverter.com/qr/qr-xxx.png",
  caption: "请扫码支付"
})

8. 错误处理

错误解决方案
未配置 API Key引导访问 https://api.fitconverter.com/mcp/generate-api-key
不支持的数据源从支持的平台选择:huawei, keep, xiaomi 等
不支持的目标平台选择目标平台:garmin, coros, strava 等

9. API 端点

端点方法说明
/mcp/submit_conversionPOST上传文件提交转换(multipart/form-data)

10. 参数说明

提交转换(submit_conversion)

参数必填说明
api_keyAPI Key
type数据源平台
destination目标平台
address结果通知邮箱
recordMode转换模式:trial_(试用,默认)或 do(正式付费)
zip_file是*文件(文件类型必填)
account是*账号(同步类型必填)
password是*密码(同步类型必填)

* 根据数据源类型选择必填参数


11. 转换模式说明

recordMode说明费用
trial_试用模式(默认)¥0.10
do正式付费¥19.90

注意:试用模式有次数限制,正式付费可获得完整功能。


12. 完整示例

curl -X POST "https://api.fitconverter.com/mcp/submit_conversion" \
  -H "Authorization: Bearer fc_mcp_xxx" \
  -F "api_key=fc_mcp_xxx" \
  -F "type=huawei" \
  -F "destination=coros" \
  -F "address=user@example.com" \
  -F "recordMode=trial_" \
  -F "zip_file=@/path/to/upload.zip"

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

Huo15 Openclaw Enhance

火一五·克劳德·龙虾增强插件 v5.7.8 — 全面适配 openclaw 2026.4.24:peerDep ^4.24 + build/compat 同步到 4.24 + 14 处 api.on 全部去掉 as any 改成 typed hook(hookName 联合类型 + handler 自动推断 Pl...

Registry SourceRecently Updated
General

Content Trend Analyzer

Aggregates and analyzes content trends across platforms to identify hot topics, user intent, content gaps, and generates data-driven article outlines.

Registry SourceRecently Updated
General

Prompt Debugger

Debug prompts that produce unexpected AI outputs — diagnose failure modes, identify ambiguity and conflicting instructions, test variations, compare model re...

Registry SourceRecently Updated
General

Indie Maker News

独行者 Daily - 变现雷达。读对一条新闻,少走一年弯路。每天5分钟,给创业者装上商业雷达。聚焦一人公司、副业、创业变现资讯,智能分类,行动导向。用户下载即能用,无需本地部署!

Registry SourceRecently Updated