Skip to content
LangChain

hostinger api mcp for LangChain

io.github.hostinger/hostinger-api-mcp

MCP server for Hostinger API

client:LangChain transport:streamable-http runtime:npm

Install hostinger api mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "hostinger-api-mcp": {
            "transport": "streamable_http",
            "url": "https://mcp.hostinger.com",
        }
})

tools = await client.get_tools()

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

hostinger api mcp in other clients