Skip to content
LangChain

secure flows for LangChain

io.github.michal-lefler/secure-flows

MCP server for secureFlows (secure-flows.com). Alias of io.github.michal-lefler/secureflows-mcp.

client:LangChain transport:streamable-http tools:18

Install secure flows in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "secure-flows": {
            "transport": "streamable_http",
            "url": "https://www.secure-flows.com/mcp?alias=secure-flows",
        }
})

tools = await client.get_tools()

get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs

What LangChain can do once it is connected

secure flows in other clients