Skip to content
LangChain

CloudBees Unify MCP Server for LangChain

io.github.cloudbees/unify-mcp-server

Connect AI agents to CloudBees Unify: feature flags, CI/CD, release orchestration, and security

client:LangChain transport:streamable-http

Install CloudBees Unify MCP Server in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "unify-mcp-server": {
            "transport": "streamable_http",
            "url": "https://mcp.cloudbees.io/v1/mcp",
        }
})

tools = await client.get_tools()

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

CloudBees Unify MCP Server in other clients