Skip to content
LangChain

McuBuddy for LangChain

io.github.cunjun/mcubuddy

AI-native MCU debugging and observability through probes, symbols, RTOS, logs, and build tools.

client:LangChain transport:stdio runtime:pypi

Install McuBuddy in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

McuBuddy in other clients