execute_custom_model
Run FAL AI models by specifying the endpoint and input parameters to generate images, videos, or custom outputs using the FAL Image/Video MCP Server.
Instructions
Execute any FAL model by specifying the endpoint directly
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category_hint | No | Hint about the expected output type for proper handling | other |
endpoint | Yes | FAL model endpoint (e.g., fal-ai/flux/schnell, fal-ai/custom-model) | |
input_params | Yes | Input parameters for the model (varies by model) |
Input Schema (JSON Schema)
{
"properties": {
"category_hint": {
"default": "other",
"description": "Hint about the expected output type for proper handling",
"enum": [
"image",
"video",
"image_to_video",
"other"
],
"type": "string"
},
"endpoint": {
"description": "FAL model endpoint (e.g., fal-ai/flux/schnell, fal-ai/custom-model)",
"type": "string"
},
"input_params": {
"description": "Input parameters for the model (varies by model)",
"type": "object"
}
},
"required": [
"endpoint",
"input_params"
],
"type": "object"
}