/ Diretório / Playground / Fal.ai MCP
● Comunidade raveenb ⚡ Instantâneo

Fal.ai MCP

por raveenb · raveenb/fal-mcp-server

Generate images, video, music, and audio through Fal.ai models.

Fal.ai hosts hundreds of generative models behind a single API — Flux, SDXL, Kling, Veo, MusicGen, ElevenLabs voices, etc. This MCP gives Claude one tool surface for image, video, audio, and TTS generation without juggling provider SDKs.

Por que usar

Principais recursos

Demo ao vivo

Como fica na prática

fal-mcp.replay ▶ pronto
0/0

Instalar

Escolha seu cliente

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "fal-mcp": {
      "command": "uvx",
      "args": [
        "fal-mcp-server"
      ]
    }
  }
}

Abra Claude Desktop → Settings → Developer → Edit Config. Reinicie após salvar.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "fal-mcp": {
      "command": "uvx",
      "args": [
        "fal-mcp-server"
      ]
    }
  }
}

Cursor usa o mesmo esquema mcpServers que o Claude Desktop. Config de projeto vence a global.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "fal-mcp": {
      "command": "uvx",
      "args": [
        "fal-mcp-server"
      ]
    }
  }
}

Clique no ícone MCP Servers na barra lateral do Cline, depois "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "fal-mcp": {
      "command": "uvx",
      "args": [
        "fal-mcp-server"
      ]
    }
  }
}

Mesmo formato do Claude Desktop. Reinicie o Windsurf para aplicar.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "fal-mcp",
      "command": "uvx",
      "args": [
        "fal-mcp-server"
      ]
    }
  ]
}

O Continue usa um array de objetos de servidor em vez de um map.

~/.config/zed/settings.json
{
  "context_servers": {
    "fal-mcp": {
      "command": {
        "path": "uvx",
        "args": [
          "fal-mcp-server"
        ]
      }
    }
  }
}

Adicione em context_servers. Zed recarrega automaticamente ao salvar.

claude mcp add fal-mcp -- uvx fal-mcp-server

Uma linha só. Verifique com claude mcp list. Remova com claude mcp remove.

Casos de uso

Usos do mundo real: Fal.ai MCP

Turn a script into a narrated short with one prompt

👤 Marketers, indie creators ⏱ ~15 min intermediate

Quando usar: You have a 30-second script and want a complete narrated short.

Pré-requisitos
  • Server/skill installed and authenticated — See repo README
Fluxo
  1. Generate the scenes
    Split this 30s script into 4 scenes and generate a video clip for each with Kling.✓ Copiado
    → Four video URLs
  2. Narrate it
    TTS each scene's narration with ElevenLabs Rachel voice.✓ Copiado
    → Audio URLs aligned with scenes

Resultado: Four video clips + matching narration audio, ready to stitch.

Armadilhas
  • Costs add up fast — Costs add up fast — set a hard budget in the prompt: 'Use the cheapest model that meets quality bar' and check the balance reported in tool output.
Combine com: filesystem

Combinações

Combine com outros MCPs para 10× de alavancagem

fal-mcp + filesystem

Pair with filesystem for complementary capabilities

Use this server together with filesystem to complete a multi-step task.✓ Copiado

Ferramentas

O que este MCP expõe

FerramentaEntradasQuando chamarCusto
generate_image prompt, model, aspect_ratio Need a still image $0.003–0.05 per image
generate_video prompt, model, duration_s Need a short video clip $0.20–2.00 per clip
tts text, voice, model Produce narration audio $0.0001 per char

Custo e limites

O que custa rodar

Cota de API
See provider docs for rate limits
Tokens por chamada
Varies by tool
Monetário
See repo README for pricing details
Dica
Cache tool results and avoid repeated identical calls.

Segurança

Permissões, segredos, alcance

Armazenamento de credenciais: Use environment variables; never commit secrets
Saída de dados: Tool calls go to the provider's API as documented

Solução de problemas

Erros comuns e correções

FAL_KEY missing

Get a key at fal.ai/dashboard/keys and set FAL_KEY env var.

Verificar: Run generate_image once with a tiny prompt
insufficient balance

Top up at fal.ai/dashboard/billing. The error includes the required amount.

Verificar: Check fal.ai/dashboard

Alternativas

Fal.ai MCP vs. outros

AlternativaQuando usarTroca
Replicate MCPYou want different model selectionDifferent per-model pricing; similar feature set

Mais

Recursos

📖 Leia o README oficial no GitHub

🐙 Ver issues abertas

🔍 Ver todos os 400+ servidores MCP e Skills