-
Notifications
You must be signed in to change notification settings - Fork 8.7k
Description
I'm using Langflow Desktop 1.7.1 on MacOS.
I've created a basic flow with an agent component connected to an LLM, an MCP server and Chat input/output.
I'm successfully running the flow on my Desktop.
I want to export the flow so I can run it on my infrastructure, using langflow-runtime k8s Helm chart.
My problem is that in the exported JSON file, the MCP server config is empty.
"value": {
"config": {},
"name": "opensearch_mcp_server_dev"
}
},
My MCP server is configured like in the screenshot.
I'm trying to define the URL as a Global variable, so in k8s I can populate it using an env var, but the field seems to expect an absolute URL.
How can I move a flow that includes an MCP server to production using the flow export?
Tweaking the json file is not desirable (but I also don't know how to do it, can you let me know? Maybe i can think of something).
Thank you in advance.