Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

class FeatureFlags(BaseSettings):
mvp_components: bool = False
mcp_composer: bool = False
mcp_composer: bool = True

class Config:
env_prefix = "LANGFLOW_FEATURE_"
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/vite.config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export default defineConfig(({ mode }) => {
envLangflow.LANGFLOW_AUTO_LOGIN ?? true,
),
"process.env.LANGFLOW_FEATURE_MCP_COMPOSER": JSON.stringify(
envLangflow.LANGFLOW_FEATURE_MCP_COMPOSER ?? "false",
envLangflow.LANGFLOW_FEATURE_MCP_COMPOSER ?? "true",
),
},
plugins: [react(), svgr(), tsconfigPaths()],
Expand Down