Skip to content
LangChain

agentbridge for LangChain

io.github.seanfdz/agentbridge

Control Classic Mac OS (System 7-9) from AI agents via shared folder protocol.

client:LangChain transport:stdio runtime:npm

Install agentbridge in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

agentbridge in other clients