@sylphx/flow 1.5.0 → 1.5.1
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 +6 -0
- package/package.json +1 -1
- package/src/config/servers.ts +13 -0
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
package/src/config/servers.ts
CHANGED
|
@@ -176,6 +176,19 @@ export const MCP_SERVER_REGISTRY: Record<string, MCPServerDefinition> = {
|
|
|
176
176
|
category: 'core',
|
|
177
177
|
defaultInInit: true,
|
|
178
178
|
},
|
|
179
|
+
|
|
180
|
+
playwright: {
|
|
181
|
+
id: 'playwright',
|
|
182
|
+
name: 'playwright',
|
|
183
|
+
description: 'Playwright MCP server for browser automation and testing',
|
|
184
|
+
config: {
|
|
185
|
+
type: 'stdio' as const,
|
|
186
|
+
command: 'npx',
|
|
187
|
+
args: ['@playwright/mcp@latest'],
|
|
188
|
+
},
|
|
189
|
+
category: 'core',
|
|
190
|
+
defaultInInit: true,
|
|
191
|
+
},
|
|
179
192
|
};
|
|
180
193
|
|
|
181
194
|
/**
|