GoAI Moat Cross-Border Cost & Profit

Landed cost, fees & profit calculators for cross-border Amazon, TikTok Shop and Shopify sellers.

Should I use this

Quality & Safety

B
Description quality
50%
Schema completeness
99%
Naming quality
87%
Poisoning risk
100%
Permission match
100%
Protocol compliance
100%

Findings (3)

  • LOWTool 'calculate_landed_cost' description lacks action verbin calculate_landed_cost
  • LOWTool 'estimate_profit' description lacks action verbin estimate_profit
  • LOWTool 'breakeven_price' description lacks action verbin breakeven_price

Based on automated analysis of tool definitions and protocol compliance.

Context Cost

~1,109Tokens (tool definitions)
~2.3 KBTypical response size
Moderate attention impact (0.87% of 128k context)

This is the approximate number of tokens consumed each time the server's tools are loaded into a model's context. Higher counts reduce the attention available for other tasks.

Install

One-Click Install

Add this to your `claude_desktop_config.json` file:

{
  "mcpServers": {
    "cross-border-profit": {
      "url": "https://profit.mcp.goaimoat.com/mcp"
    }
  }
}

Remote endpoints

https://profit.mcp.goaimoat.com/mcpstreamable-http

What it can do

Tool inventory

Tools (3)

🟢 Read-only🟡 Write🔴 Delete⚪ Unknown
🟢calculate_landed_cost(unit_cost, unit_weight_kg, freight_method, freight_total_override, duty_rate_pct, ...)

计算单件落地成本(采购 + 头程 + 关税 + 杂费)。 落地成本 = 采购单价 + 单件头程运费 + 关税(按货值)+ 其他固定成本(贴标/质检/包装等)。

Input Schema

{
  "type": "object",
  "properties": {
    "unit_cost": {
      "type": "number",
      "description": "单件采购单价(出厂价,USD)。"
    },
    "unit_weight_kg": {
      "default": 0,
      "type": "number",
      "description": "单件毛重(含包装,kg),用于按头程费率估算运费;若给了\nfreight_total_override 则忽略此项。"
    },
    "freight_method": {
      "default": "sea",
      "type": "string",
      "description": "头程方式 sea(海运)/air(空运)/express(快递),决定参考费率。"
    },
    "freight_total_override": {
      "anyOf": [
        {
          "type": "number"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "description": "直接指定单件头程运费(USD),优先于重量估算。"
    },
    "duty_rate_pct": {
      "default": 0,
      "type": "number",
      "description": "关税税率(%),按货值计;需以 HS 编码 + 进口国海关核定,\n本工具不编造税率,默认 0(可先用 export-compliance 的 HS 工具归类)。"
    },
    "other_fixed_cost": {
      "default": 0,
      "type": "number",
      "description": "单件其他固定成本(USD),默认 0。"
    }
  },
  "required": [
    "unit_cost"
  ],
  "additionalProperties": false
}

Output Schema

{
  "type": "object",
  "additionalProperties": true
}
estimate_profit(sell_price, landed_cost, platform, category, fba_tier, ...)

估算单件净利 / 净利率 / ROI / 保本 ACoS。 净利 = 售价 − 落地成本 − 平台佣金 − 履约费(仅 FBA) − 广告费。

Input Schema

{
  "type": "object",
  "properties": {
    "sell_price": {
      "type": "number",
      "description": "售价(USD)。"
    },
    "landed_cost": {
      "type": "number",
      "description": "单件落地成本(USD,可用 calculate_landed_cost 得到)。"
    },
    "platform": {
      "default": "amazon_fba",
      "type": "string",
      "description": "平台 amazon_fba / amazon_fbm / tiktok_us / shopify / aliexpress。"
    },
    "category": {
      "default": "home_kitchen",
      "type": "string",
      "description": "亚马逊品类(仅 amazon 平台生效,决定佣金%),默认 home_kitchen。"
    },
    "fba_tier": {
      "default": "small_std_4_8oz",
      "type": "string",
      "description": "FBA 尺寸档(仅 amazon_fba 生效,决定履约费),默认 small_std_4_8oz。"
    },
    "ad_cost_pct": {
      "default": 15,
      "type": "number",
      "description": "广告费占售价比例(%),默认 15。"
    },
    "return_rate_pct": {
      "default": 0,
      "type": "number",
      "description": "退货率(%),默认 0,仅计入提示、不直接扣减(退货成本另算)。"
    }
  },
  "required": [
    "sell_price",
    "landed_cost"
  ],
  "additionalProperties": false
}

Output Schema

{
  "type": "object",
  "additionalProperties": true
}
breakeven_price(landed_cost, platform, category, fba_tier, target_margin_pct, ...)

反推保本价与达到目标净利率所需的售价。 解方程:售价 × (1 − 佣金率 − 广告率 − 目标净利率) = 落地成本 + 固定费用(履约费/固定手续费)。

Input Schema

{
  "type": "object",
  "properties": {
    "landed_cost": {
      "type": "number",
      "description": "单件落地成本(USD)。"
    },
    "platform": {
      "default": "amazon_fba",
      "type": "string",
      "description": "平台 amazon_fba / amazon_fbm / tiktok_us / shopify / aliexpress。"
    },
    "category": {
      "default": "home_kitchen",
      "type": "string",
      "description": "亚马逊品类(仅 amazon 生效),默认 home_kitchen。"
    },
    "fba_tier": {
      "default": "small_std_4_8oz",
      "type": "string",
      "description": "FBA 尺寸档(仅 amazon_fba 生效),默认 small_std_4_8oz。"
    },
    "target_margin_pct": {
      "default": 20,
      "type": "number",
      "description": "目标净利率(%),默认 20。"
    },
    "ad_cost_pct": {
      "default": 15,
      "type": "number",
      "description": "广告费占售价比例(%),默认 15。"
    }
  },
  "required": [
    "landed_cost"
  ],
  "additionalProperties": false
}

Output Schema

{
  "type": "object",
  "additionalProperties": true
}

Community

Rate this Server

Evidence

Recent observations

verifiedversion not recorded3 tools