Skip to content
LangChain

Deep Art AI for LangChain

io.github.deeparteffects/deep-art-ai

Generate and edit images and videos, and check your Deep Art credit balance.

client:LangChain transport:streamable-http

Install Deep Art AI in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "deep-art-ai": {
            "transport": "streamable_http",
            "url": "https://api.deepart.ai/mcp",
        }
})

tools = await client.get_tools()

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

Deep Art AI in other clients