@sylphx/flow 3.21.1 → 3.22.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @sylphx/flow
2
2
 
3
+ ## 3.22.0 (2026-02-09)
4
+
5
+ Add fal.ai MCP server for generative AI models (image, video, audio)
6
+
7
+ ### ✨ Features
8
+
9
+ - **flow:** add fal.ai MCP server to registry ([f931207](https://github.com/SylphxAI/flow/commit/f931207e0ed36df22b60a7075623c4130c6b0eec))
10
+
3
11
  ## 3.21.1 (2026-02-08)
4
12
 
5
13
  ### 🐛 Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sylphx/flow",
3
- "version": "3.21.1",
3
+ "version": "3.22.0",
4
4
  "description": "One CLI to rule them all. Unified orchestration layer for AI coding assistants. Auto-detection, auto-installation, auto-upgrade.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -189,6 +189,18 @@ export const MCP_SERVER_REGISTRY: Record<string, MCPServerDefinition> = {
189
189
  category: 'core',
190
190
  defaultInInit: true,
191
191
  },
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
+ },
192
204
  };
193
205
 
194
206
  /**