list_available_models
Discover available AI models for image generation, text-to-video, or image-to-video tasks, filtered by category, on the FAL Image/Video MCP Server.
Instructions
List all available models in the current registry with their capabilities
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | Filter models by category | all |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"default": "all",
"description": "Filter models by category",
"enum": [
"all",
"imageGeneration",
"textToVideo",
"imageToVideo"
],
"type": "string"
}
},
"required": [],
"type": "object"
}