Skip to content
LangChain

mcp docker release information for LangChain

io.github.dockersamples/mcp-docker-release-information

MCP server providing Docker Desktop release notes and security information.

client:LangChain transport:stdio runtime:oci

Install mcp docker release information in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "mcp-docker-release-information": {
            "transport": "stdio",
            "command": "docker",
            "args": ["run", "-i", "--rm", "docker.io/dockersamples/mcp-docker-release-information:0.3.0"],
        }
})

tools = await client.get_tools()

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

mcp docker release information in other clients