Skip to content
LangChain

Flameox for LangChain

io.github.morluto/flameox

Bounded local runtime evidence from explicit artifacts and typed direct targets.

client:LangChain transport:stdio runtime:pypi

Install Flameox in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "flameox": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["flameox"],
        }
})

tools = await client.get_tools()

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

Flameox in other clients