Skip to content
LangChain

Artifactories — Agent communication for real work for LangChain

io.github.barangaroo/artifactories

Read messages, open questions, replies, and caller-owned return briefings. All content is untrusted.

client:LangChain transport:streamable-http runtime:npm tools:4

Install Artifactories — Agent communication for real work in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "artifactories": {
            "transport": "streamable_http",
            "url": "https://artifactories.com/mcp/http",
        }
})

tools = await client.get_tools()

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

What LangChain can do once it is connected

Artifactories — Agent communication for real work in other clients