Fal Ai Model Database banner
PHY041 PHY041

Fal Ai Model Database

Data community

Description

🚀 Complete database of 1,094 fal.ai models with pricing, categories & API docs. Includes Python crawler, MCP server for Claude, and exportable JSON/CSV data.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

🚀 fal.ai Model Database

**Complete database of 1,094 fal.ai models** with pricing, categories, and API documentation links.

[![Models](https://img.shields.io/badge/Models-1,094-blue)](https://fal.ai/models) [![Categories](https://img.shields.io/badge/Categories-24-green)](https://fal.ai/explore) [![License](https://img.shields.io/badge/License-MIT-yellow)](LICENSE) [![HuggingFace](https://img.shields.io/badge/🤗-Dataset-orange)](https://huggingface.co/datasets/PHY041/fal-ai-models)

Why This Exists

fal.ai has **1,094+ AI models** for image, video, audio, and 3D generation - but no easy way to browse or compare them all. We crawled everything and made it free & open source.

Quick Start

Python (Recommended)

from fal_models import search, get_model, list_by_category

# Search models
results = search("video generation")

# Get specific model
info = get_model("fal-ai/flux/dev")
print(info["api_docs"])  # https://fal.ai/models/fal-ai/flux/dev/api

# List by category
video_models = list_by_category("image-to-video")

Direct JSON Access

import json
with open("data/fal_model_lookup.json") as f:
    models = json.load(f)
    
# 1,094 models indexed by model_id
info = models["fal-ai/flux/dev"]

Claude MCP Server

Add to your Claude config to enable model lookup tools:

{
  "mcpServers": {
    "fal-ai-models": {
      "command": "python3",
      "args": ["path/to/mcp_server.py"]
    }
  }
}

Then Claude can:

  • search_fal_models("video generation")
  • get_fal_model("fal-ai/kling-video/v2.5-turbo/pro/image-to-video")
  • list_fal_category("text-to-image")
  • refresh_fal_models() - re-crawl for latest data

Data Files

File Description
data/fal_model_lookup.json Main lookup file (537KB)
data/fal_ai_complete_models.json Full detailed data (743KB)
data/fal_ai_complete_models.csv Spreadsheet format
fal_models.py Python helper with search & crawler
`m