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
# Comment List Command
List YouTube comments.
## Usage
```bash
yutu comment list [flags]
```
## Flags
| Flag | Shorthand | Description |
|------|-----------|-------------|
| `--ids` | `-i` | IDs of comments |
| `--jsonpath` | `-j` | JSONPath expression to filter the output |
| `--maxResults` | `-n` | The maximum number of items that should be returned, 0 for no limit (default 5) |
| `--output` | `-o` | json\|yaml\|table (default "table") |
| `--parentId` | `-P` | Returns replies to the specified comment |
| `--parts` | `-p` | Comma separated parts (default [id,snippet]) |
| `--textFormat` | `-t` | textFormatUnspecified\|html\|plainText (default "html") |
## Examples
```bash
# List replies to a comment
yutu comment list --parentId PARENT_COMMENT_ID
```