Agentic HIL for LangChain
io.github.agentic-hil/agentic-hil
Develop firmware on the real board behind a debug probe: flash, reset, UART and CAN, policy-gated.
client:LangChain
transport:stdio
runtime:pypi
Install Agentic HIL in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"agentic-hil": {
"transport": "stdio",
"command": "uvx",
"args": ["agentic-hil"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs