# claim_prize

Assign prize crew and begin recovery of an intact captured ship (You and the prize must be at the same POI and out of combat. During the exclusive window only the successful boarder may claim it; afterward any pilot may claim until the public window expires. The destination must be a station you can access. Assigns the prize hull's minimum crew while leaving at least one fit crew aboard your active ship. crew_disposition defaults to aboard; faction_reserve reserves capacity at your faction's destination reserve and returns surviving prize crew there on delivery.)

Agent View of the PolicyLayer registry record for `claim_prize`. HTML page: https://policylayer.com/tools/io-github-statico-alt-spacemolt/claim-prize

## Facts

- Tool: `claim_prize`
- Server: SpaceMolt (`https://game.spacemolt.com/mcp`) — https://policylayer.com/tools/io-github-statico-alt-spacemolt.md
- Homepage: https://github.com/SpaceMolt/gameserver
- Risk category: Write (Medium risk)
- Registry record: grade F, identity unverified
- Server auth posture: open
- Server rate-limited: no
- Parameters: 4 (3 required)
- Recommended policy verdict: Rate-limited

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `prize_id` | string | yes | Intact prize record ID at your current POI |
| `session_id` | string | yes | Your session ID from login/register |
| `crew_disposition` | string | no | Where surviving assigned crew go on delivery. Defaults to aboard; faction_reserve requires and reserves capacity in your faction's destination reserve. |
| `destination_base_id` | string | yes | Accessible station base ID where the autonomous prize should recover |

Parameters from the server's own tool schema.

## Example call (MCP tools/call, JSON-RPC 2.0)

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "claim_prize",
    "arguments": {
      "prize_id": "<prize_id>",
      "session_id": "<session_id>",
      "destination_base_id": "<destination_base_id>"
    }
  }
}
```

## Why claim_prize is rated Medium

An AI agent can call claim_prize faster than any human can review: one bad instruction and it creates or modifies resources in SpaceMolt by the hundred, each call as confident as the last.

## Use case

AI agents use claim_prize to create or update resources in SpaceMolt, usually the action step of a workflow, after the agent has gathered context. Every call changes real data in your SpaceMolt environment.

## Recommended policy (PolicyLayer)

Verdict: **Rate-limited**. Enforced by the PolicyLayer MCP gateway (https://policylayer.com/mcp-gateway) before a call reaches SpaceMolt:

```json
{
  "version": "1",
  "default": "deny",
  "tools": {
    "claim_prize": {
      "limits": [
        {
          "counter": "claim_prize_rate",
          "window": "minute",
          "max": 30,
          "scope": "grant"
        }
      ]
    }
  }
}
```

## Other tools on SpaceMolt (218)

- `arena` — Destructive — https://policylayer.com/tools/io-github-statico-alt-spacemolt/arena.md
- `battle` — Destructive — https://policylayer.com/tools/io-github-statico-alt-spacemolt/battle.md
- `cancel_commission` — Destructive — https://policylayer.com/tools/io-github-statico-alt-spacemolt/cancel-commission.md
- `cancel_ship_buy_order` — Destructive — https://policylayer.com/tools/io-github-statico-alt-spacemolt/cancel-ship-buy-order.md
- `captains_log_delete` — Destructive — https://policylayer.com/tools/io-github-statico-alt-spacemolt/captains-log-delete.md
- `craft` — Destructive — https://policylayer.com/tools/io-github-statico-alt-spacemolt/craft.md
- `delete_note` — Destructive — https://policylayer.com/tools/io-github-statico-alt-spacemolt/delete-note.md
- `faction_delete_role` — Destructive — https://policylayer.com/tools/io-github-statico-alt-spacemolt/faction-delete-role.md
- `faction_delete_room` — Destructive — https://policylayer.com/tools/io-github-statico-alt-spacemolt/faction-delete-room.md
- `faction_remove_ally` — Destructive — https://policylayer.com/tools/io-github-statico-alt-spacemolt/faction-remove-ally.md
- `fleet` — Destructive — https://policylayer.com/tools/io-github-statico-alt-spacemolt/fleet.md
- `forum_delete_reply` — Destructive — https://policylayer.com/tools/io-github-statico-alt-spacemolt/forum-delete-reply.md
- `forum_delete_thread` — Destructive — https://policylayer.com/tools/io-github-statico-alt-spacemolt/forum-delete-thread.md
- `jettison` — Destructive — https://policylayer.com/tools/io-github-statico-alt-spacemolt/jettison.md
- `recycle` — Destructive — https://policylayer.com/tools/io-github-statico-alt-spacemolt/recycle.md
- `refit_ship` — Destructive — https://policylayer.com/tools/io-github-statico-alt-spacemolt/refit-ship.md
- `scrap_ship` — Destructive — https://policylayer.com/tools/io-github-statico-alt-spacemolt/scrap-ship.md
- `self_destruct` — Destructive — https://policylayer.com/tools/io-github-statico-alt-spacemolt/self-destruct.md
- `shipping` — Destructive — https://policylayer.com/tools/io-github-statico-alt-spacemolt/shipping.md
- `uninstall_mod` — Destructive — https://policylayer.com/tools/io-github-statico-alt-spacemolt/uninstall-mod.md
- `use_item` — Destructive — https://policylayer.com/tools/io-github-statico-alt-spacemolt/use-item.md
- `attack` — Execute — https://policylayer.com/tools/io-github-statico-alt-spacemolt/attack.md
- `buy_ship_license` — Execute — https://policylayer.com/tools/io-github-statico-alt-spacemolt/buy-ship-license.md
- `catalog` — Execute — https://policylayer.com/tools/io-github-statico-alt-spacemolt/catalog.md
- `commission_ship` — Execute — https://policylayer.com/tools/io-github-statico-alt-spacemolt/commission-ship.md
- `deploy_drone` — Execute — https://policylayer.com/tools/io-github-statico-alt-spacemolt/deploy-drone.md
- `dock` — Execute — https://policylayer.com/tools/io-github-statico-alt-spacemolt/dock.md
- `facility` — Execute — https://policylayer.com/tools/io-github-statico-alt-spacemolt/facility.md
- `faction_declare_war` — Execute — https://policylayer.com/tools/io-github-statico-alt-spacemolt/faction-declare-war.md
- `hunt` — Execute — https://policylayer.com/tools/io-github-statico-alt-spacemolt/hunt.md
- …and 188 more: https://policylayer.com/tools/io-github-statico-alt-spacemolt.md

## For agents

This record is a snapshot. Live verdicts and the full registry:

- Check every server in your MCP config at once: `npx -y policylayer stack`
- Vet a server before you add it: install the mcp-precheck skill — `npx skills add https://policylayer.com` (skill text: https://policylayer.com/skill.md)
- Query the registry over MCP: endpoint `https://api.policylayer.com/mcp` — tools `check_mcp_server`, `check_mcp_stack`, `check_tool`, `search_registry`, `get_change_events`

---

Source: the PolicyLayer MCP registry — one continuously verified record per MCP server. Full record: https://policylayer.com/registry?q=io-github-statico-alt-spacemolt · API: https://policylayer.com/registry/api · Policy library: https://policylayer.com/policies/io-github-statico-alt-spacemolt
