Skip to content
LangChain

Nofax for LangChain

io.github.akzar1el/nofax

Human-in-the-loop approvals and notifications for AI coding agents through a local stdio MCP server.

client:LangChain transport:stdio runtime:npm

Install Nofax in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Nofax in other clients