Skip to main content
Glama

Fal.ai MCP Server

by raveenb
full_server_code.md2.01 kB
# Complete Server Code Copy this entire code to `src/fal_mcp_server/server.py`: ```python #!/usr/bin/env python3 """Fal.ai MCP Server for media generation""" import asyncio import json import os import sys from typing import Optional, Dict, Any, List from pathlib import Path # MCP imports from mcp.server import Server from mcp.server.models import InitializationOptions from mcp.types import Tool, TextContent, ServerCapabilities import mcp.server.stdio # Fal client import fal_client # Configure Fal client if api_key := os.getenv("FAL_KEY"): os.environ["FAL_KEY"] = api_key # Initialize the MCP server server = Server("fal-ai-mcp") # Model configurations MODELS = { "image": { "flux_schnell": "fal-ai/flux/schnell", "flux_dev": "fal-ai/flux/dev", "flux_pro": "fal-ai/flux-pro", "sdxl": "fal-ai/fast-sdxl", "stable_diffusion": "fal-ai/stable-diffusion-v3-medium", }, "video": { "svd": "fal-ai/stable-video-diffusion", "animatediff": "fal-ai/fast-animatediff", "kling": "fal-ai/kling-video", }, "audio": { "musicgen": "fal-ai/musicgen-medium", "musicgen_large": "fal-ai/musicgen-large", "bark": "fal-ai/bark", "whisper": "fal-ai/whisper", }, } # ... [Include all the @server.list_tools() and @server.call_tool() functions from the artifact above] ... async def run(): """Run the MCP server""" async with mcp.server.stdio.stdio_server() as (read_stream, write_stream): await server.run( read_stream, write_stream, InitializationOptions( server_name="fal-ai-mcp", server_version="1.0.0", capabilities=ServerCapabilities( tools={} ) ) ) def main(): """Main entry point""" asyncio.run(run()) if __name__ == "__main__": main() ``` Note: The complete code is in the artifact shown earlier in this conversation.

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/raveenb/fal-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server