Skip to content
LangChain

image processing for LangChain

ai.pictomancer/image-processing

Image processing for AI agents: resize, convert, compress, crop, and web-ready AI-generated images.

client:LangChain transport:streamable-http tools:10

Install image processing in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "image-processing": {
            "transport": "streamable_http",
            "url": "https://api.pictomancer.ai/mcp",
        }
})

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

image processing in other clients