# `unhide_creator`

_Saved references_

`write` `idempotent`

Show a previously hidden creator (by handle) in this brand's reference catalog again. No-op when the creator was not hidden.

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `brandId` | `string` | no |  |
| `creatorHandle` | `string` | yes |  |

## Example

### Prompt

```text
Actually, unhide that creator I blocked from my catalog earlier.
```

### JSON-RPC

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "unhide_creator",
    "arguments": {
      "creatorHandle": "example creator handle"
    }
  }
}
```

### curl

```bash
curl -X POST https://app.usedalea.ai/api/mcp/mcp \
  -H "Authorization: Bearer dalea_mcp_..." \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"unhide_creator","arguments":{"creatorHandle":"example creator handle"}}}'
```
