We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/eat-pray-ai/yutu'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# PlaylistImage Insert Command
Insert a YouTube playlist image. Use this tool when you need to insert a YouTube playlist image for a given playlist ID.
## Usage
```bash
yutu playlistImage insert [flags]
```
## Flags
| Flag | Shorthand | Description |
|------|-----------|-------------|
| `--file` | `-f` | Path to the image file |
| `--height` | `-H` | The image height |
| `--jsonPath` | `-j` | JSONPath expression to filter the output |
| `--onBehalfOfContentOwner` | `-b` | ID of the content owner, for YouTube content partners |
| `--onBehalfOfContentOwnerChannel` | `-B` | YouTube channel ID linked to the content owner |
| `--output` | `-o` | json\|yaml\|silent |
| `--playlistId` | `-p` | ID of the playlist this image is associated with |
| `--type` | `-t` | The image type (e.g., 'hero') |
| `--width` | `-W` | The image width |
## Examples
```bash
yutu playlistImage insert --file cover.jpg --playlistId PLxxx
yutu playlistImage insert --file cover.png --playlistId PLxxx --type hero
yutu playlistImage insert --file cover.jpg --playlistId PLxxx --width 2048 --height 1152
```