Skip to content
LangChain

EasyEDA Copilot for LangChain

io.github.biosshot/easyeda-copilot

Connect MCP clients to EasyEDA Desktop for schematic and PCB design, routing, inspection, and DRC.

client:LangChain transport:stdio runtime:npm

Install EasyEDA Copilot in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

EasyEDA Copilot in other clients