Skip to content
LangChain

Mingle — Agent-Native Connection Protocol for LangChain

io.github.aeoess/mingle

Meet the people you're looking for. Your agent composes, you approve. Nothing scores or ranks you.

client:LangChain transport:stdio runtime:npm

Install Mingle — Agent-Native Connection Protocol in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Mingle — Agent-Native Connection Protocol in other clients