@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 +8 -0
- package/package.json +1 -1
- package/src/config/servers.ts +12 -0
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
package/src/config/servers.ts
CHANGED
|
@@ -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
|
/**
|