# `set_video_classification`

_Performance_

`write` `idempotent`

Manually classify one of the brand's published videos (by platformVideoId): funnel (tofu | mofu | bofu), format (taxonomy slug, e.g. talking_head, tutorial, listicle) and/or communicationStyle (style slug). Provide at least one; pass null to clear an axis back to unclassified. Only the classification columns change (marked as manual so auto-classification will not overwrite them); metrics, analysis and the video itself are NOT touched, and nothing is published. Returns the video's resulting classification.

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `brandId` | `string` | no |  |
| `platformVideoId` | `string` | yes |  |
| `funnel` | `"tofu" \| "mofu" \| "bofu" \| null` | no |  |
| `format` | `string \| null` | no |  |
| `communicationStyle` | `string \| null` | no |  |

## Example

### Prompt

```text
Mark that video as a bofu funnel stage with a tutorial format.
```

### JSON-RPC

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "set_video_classification",
    "arguments": {
      "platformVideoId": "3f6c2a4e-8b1d-4c7a-9e2f-5a1b0c9d8e7f"
    }
  }
}
```

### 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":"set_video_classification","arguments":{"platformVideoId":"3f6c2a4e-8b1d-4c7a-9e2f-5a1b0c9d8e7f"}}}'
```
