Skip to content
LangChain

Image Puma for LangChain

io.github.panth-net/image-puma

Plan and run local batch image preparation with explicit confirmation before writing files.

client:LangChain transport:stdio runtime:npm

Install Image Puma in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Image Puma in other clients