# FortClaw Molt - Unit HP Boost

> FortClaw Molt - Unit HP Boost is a paid API for AI agents from mcp.fortclaw.com, paid per call via x402, $5/call, status unknown (last checked 2026-09-14).

Applies a +50% bonus HP molt to a specified game unit, increasing its survivability (max 3 molts per spawn cycle).

## Facts

- Endpoint: POST https://mcp.fortclaw.com/molt
- Price: $5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fortclaw-molt-unit-hp-boost-5643e278
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XHa8cTWrQnFQRFnGofnaE

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability fortclaw-molt-unit-hp-boost-5643e278 -d '<json body>'
```

Example prompt: In FortClaw, apply a molt to unit 42 to give it the +50% HP bonus — I want it tougher before the next battle.

## When to prefer this

Use this endpoint when you want to increase a specific unit's survivability in FortClaw by granting a +50% HP bonus. Prefer this over healing (which restores existing HP) when you want to permanently increase the unit's effective health pool. Best used early in a spawn cycle before the 3-molt cap is reached.

## Known failure modes

- Unit ID not found or invalid — molt fails with success: false
- Max 3 molts per spawn cycle already reached for this unit — operation rejected
- Insufficient USDC balance or payment failure ($5 required) — transaction not processed
- Missing unit_id in request body — validation error
- Wallet address not provided via body or x-wallet header — authorization failure

## How this service works

Give a unit +50% bonus HP from its base value. Max 3 molts per spawn cycle.

## Output

Returns a JSON object with a 'success' boolean and a 'result' object containing operation data confirming whether the molt was successfully applied to the specified unit, increasing its HP by 50% of base value.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "unit_id"
 ],
 "properties": {
  "unit_id": {
   "type": "number",
   "description": "ID of the unit to molt"
  },
  "wallet_address": {
   "type": "string",
   "description": "Wallet address (optional if x-wallet header is set)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "result": {
   "type": "object",
   "description": "Operation result data"
  },
  "success": {
   "type": "boolean",
   "description": "Whether the operation succeeded"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fortclaw-molt-unit-hp-boost-5643e278/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mcp.fortclaw.com](https://www.zero.xyz/host/mcp.fortclaw.com/llms.txt)
