Skip to content
LangChain

three.ws AgenC for LangChain

io.github.nirholas/agenc-mcp

Browse the AgenC on-chain task marketplace, query the agent registry, and link identities.

client:LangChain transport:stdio runtime:npm

Install three.ws AgenC in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "agenc-mcp": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@three-ws/agenc-mcp"],
        }
})

tools = await client.get_tools()

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

three.ws AgenC in other clients