Skip to content
LangChain

Mirofy for LangChain

io.github.hasan-laraib/mirofy

Ask a repository what depends on what. Every answer cites the file, line and commit it came from.

client:LangChain transport:stdio runtime:npm

Install Mirofy in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "mirofy": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "mirofy-cli"],
        }
})

tools = await client.get_tools()

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

Mirofy in other clients