Skip to content
LangChain

GIMP 3 MCP for LangChain

io.github.tifyr/gimp3-mcp

Let AI assistants paint, edit and export images in a running GIMP 3, with 80 tools.

client:LangChain transport:stdio runtime:pypi

Install GIMP 3 MCP in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "gimp3-mcp": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["gimp3-mcp"],
        }
})

tools = await client.get_tools()

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

GIMP 3 MCP in other clients