Skip to content
LangChain

IFC MCP for LangChain

io.github.flinker-app/ifc-mcp

Local IFC/BIM MCP server with IfcOpenShell Python in Pyodide and an IFC viewer.

client:LangChain transport:stdio runtime:npm

Install IFC MCP in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

IFC MCP in other clients