Skip to content

Commit c74c60a

Browse files
committed
Add fal.ai MCP server
Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> Claude-Session: https://claude.ai/code/session_01S58U7phvDgphx6ZTXuWMJQ
1 parent 2fd91f8 commit c74c60a

1 file changed

Lines changed: 68 additions & 0 deletions

File tree

servers/ai.fal-mcp.json

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "ai.fal-mcp",
4+
"name": "fal.ai",
5+
"alias": "fal",
6+
"description": "Search, run, and chain 1,000+ generative AI models (image, video, audio, music) from fal.ai's hosted MCP endpoint. Exposes model discovery, schema/pricing lookup, job execution, and file upload tools.",
7+
"logo": "https://avatars.githubusercontent.com/u/74778219?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"ai-ml"
11+
],
12+
"tags": [
13+
"fal",
14+
"fal-ai",
15+
"generative-ai",
16+
"image-generation",
17+
"video-generation",
18+
"audio",
19+
"models"
20+
],
21+
"transport": {
22+
"type": "http",
23+
"url": "https://mcp.fal.ai/mcp",
24+
"headers": {
25+
"Authorization": "Bearer ${input:FAL_KEY}"
26+
},
27+
"metadata": {
28+
"inputs": [
29+
{
30+
"id": "FAL_KEY",
31+
"label": "fal API Key",
32+
"description": "Your fal.ai API key. Sent per request in the Authorization header; used to authenticate and bill model runs against your account.",
33+
"type": "text",
34+
"required": true,
35+
"secret": true,
36+
"placeholder": "********",
37+
"obtain": {
38+
"url": "https://fal.ai/dashboard/keys",
39+
"instructions": "1. Go to fal.ai/dashboard/keys\n2. Sign up or log in\n3. Create a new API key\n4. Copy the key",
40+
"button_label": "Get API Key"
41+
}
42+
}
43+
]
44+
}
45+
},
46+
"auth": {
47+
"type": "api_key",
48+
"instructions": "Create a fal API key at https://fal.ai/dashboard/keys and provide it as FAL_KEY. It is sent as 'Authorization: Bearer <FAL_KEY>'."
49+
},
50+
"contributor": {
51+
"name": "fal.ai",
52+
"github": "fal-ai",
53+
"url": "https://fal.ai"
54+
},
55+
"links": {
56+
"homepage": "https://fal.ai",
57+
"documentation": "https://fal.ai/docs/documentation/setting-up/mcp"
58+
},
59+
"platforms": [
60+
"all"
61+
],
62+
"capabilities": {
63+
"tools": true,
64+
"resources": false,
65+
"prompts": false,
66+
"read_only_mode": false
67+
}
68+
}

0 commit comments

Comments
 (0)