Skip to content
LangChain

no_human for LangChain

io.github.no-human-ai/no_human

File a task with your local no_human and check on it: task_add and task_status over stdio.

client:LangChain transport:stdio runtime:pypi

Install no_human in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "no_human": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["no-human"],
        }
})

tools = await client.get_tools()

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

no_human in other clients