Skip to content
LangChain

Obambu cPanel MCP for LangChain

io.github.rodriguedev13/obambu-cpanel-mcp

MCP server exposing cPanel UAPI (domains, DNS, email, MySQL, files) as tools for AI assistants.

client:LangChain transport:stdio runtime:npm

Install Obambu cPanel MCP in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "obambu-cpanel-mcp": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "obambu-cpanel-mcp"],
        }
})

tools = await client.get_tools()

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

Obambu cPanel MCP in other clients