fal.ai MCP

AIstdio
Repository

An MCP server for fal.ai's hosted generative model catalog, letting assistants create images, video, music, and audio from natural language. Agents can pick a model, submit a generation request with parameters, poll long-running jobs, and retrieve the resulting media URLs directly in the conversation.

Connect

Add this configuration to .claude/mcp.json

{
  "mcpServers": {
    "fal": {
      "command": "npx",
      "args": [],
      "env": {
        "FAL_KEY": "<YOUR_FAL_KEY>"
      }
    }
  }
}

Tools (3)

generate_image

Generate an image with a fal.ai model.

{
  "type": "object",
  "required": [
    "prompt"
  ],
  "properties": {
    "model": {
      "type": "string",
      "description": "fal.ai model endpoint identifier"
    },
    "prompt": {
      "type": "string",
      "description": "Prompt describing the image"
    }
  }
}

generate_video

Generate a video from a text prompt or source image.

{
  "type": "object",
  "required": [
    "prompt"
  ],
  "properties": {
    "prompt": {
      "type": "string",
      "description": "Prompt describing the video"
    },
    "image_url": {
      "type": "string",
      "description": "Optional source image for image-to-video"
    }
  }
}

check_job

Poll the status of a queued generation job and return output URLs.

{
  "type": "object",
  "required": [
    "request_id"
  ],
  "properties": {
    "request_id": {
      "type": "string",
      "description": "Identifier of the queued request"
    }
  }
}

Resources

This server does not expose any resources.

Prompts

This server does not expose any prompts.

Server information

Author
luminarylane (@luminarylane)
Repository
https://github.com/luminarylane/fal-mcp-server
License
MIT
Stars
0
Last updated
August 3, 2026