Skip to content

Commit f931207

Browse files
committed
feat(flow): add fal.ai MCP server to registry
HTTP-type MCP server for fal.ai generative AI models (image, video, audio). Enabled by default, no API key required.
1 parent 8ca25dc commit f931207

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

.bump/fal-mcp.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
release: minor
3+
package: @sylphx/flow
4+
---
5+
6+
Add fal.ai MCP server for generative AI models (image, video, audio)

packages/flow/src/config/servers.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,18 @@ export const MCP_SERVER_REGISTRY: Record<string, MCPServerDefinition> = {
189189
category: 'core',
190190
defaultInInit: true,
191191
},
192+
193+
fal: {
194+
id: 'fal',
195+
name: 'fal',
196+
description: 'fal.ai MCP server for generative AI models (image, video, audio)',
197+
config: {
198+
type: 'http' as const,
199+
url: 'https://docs.fal.ai/mcp',
200+
},
201+
category: 'ai',
202+
defaultInInit: true,
203+
},
192204
};
193205

194206
/**

0 commit comments

Comments
 (0)