Loading...
Loading...
Upscale and enhance image resolution using AI. Use when the user requests "Upscale image", "Enhance resolution", "Make image bigger", "Increase quality", or similar upscaling tasks.
npx skill4agent add fal-ai-community/skills fal-upscale| Model | Scale | Best For |
|---|---|---|
| 4x | General upscaling, fast |
| 2-4x | Detail preservation |
| 2-4x | Creative enhancement |
| Model | Notes |
|---|---|
| General purpose |
| Premium quality |
| Fast |
| Real-time |
| High fidelity |
| Good balance |
| Lightweight |
bash /mnt/skills/user/fal-upscale/scripts/upscale.sh [options]--image-url--modelfal-ai/aura-sr--scale# Image upscale with AuraSR (4x, fast)
bash /mnt/skills/user/fal-upscale/scripts/upscale.sh \
--image-url "https://example.com/image.jpg"
# Image upscale with Clarity (detail preservation)
bash /mnt/skills/user/fal-upscale/scripts/upscale.sh \
--image-url "https://example.com/image.jpg" \
--model "fal-ai/clarity-upscaler" \
--scale 2
# Video upscale (general purpose)
bash /mnt/skills/user/fal-upscale/scripts/upscale.sh \
--video-url "https://example.com/video.mp4" \
--model "fal-ai/video-upscaler"
# Video upscale (premium quality)
bash /mnt/skills/user/fal-upscale/scripts/upscale.sh \
--video-url "https://example.com/video.mp4" \
--model "fal-ai/topaz/upscale/video"mcp__fal-ai__generate({
modelId: "fal-ai/aura-sr",
input: {
image_url: "https://example.com/image.jpg"
}
})Upscaling with fal-ai/aura-sr...
Upscale complete!
Image URL: https://v3.fal.media/files/abc123/upscaled.png
Original: 512x512
Upscaled: 2048x2048{
"image": {
"url": "https://v3.fal.media/files/abc123/upscaled.png",
"width": 2048,
"height": 2048
}
}Here's your upscaled image:

• 512×512 → 2048×2048 (4x)fal-ai/aura-srfal-ai/clarity-upscalerfal-ai/creative-upscalerError: FAL_KEY environment variable not set
To fix:
1. Get your API key from https://fal.ai/dashboard/keys
2. Set: export FAL_KEY=your_key_hereError: Could not fetch image from URL
Make sure:
1. The image URL is publicly accessible
2. The URL points directly to an image file
3. The image format is supported (JPEG, PNG, WebP)Network error. To fix on claude.ai:
1. Go to https://claude.ai/settings/capabilities
2. Add *.fal.ai to the allowed domains
3. Try again