Skip to content
LangChain

dolphin mcp pilot for LangChain

io.github.iflytek/dolphin-mcp-pilot

AI agent interface to Apache DolphinScheduler: 58 MCP tools for workflow orchestration & data ops.

client:LangChain transport:stdio runtime:oci

Install dolphin mcp pilot in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "dolphin-mcp-pilot": {
            "transport": "stdio",
            "command": "docker",
            "args": ["run", "-i", "--rm", "ghcr.io/iflytek/dolphin-mcp-pilot:0.3.1"],
        }
})

tools = await client.get_tools()

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

dolphin mcp pilot in other clients