Skip to content
LangChain

NotifyHub — Unified Notification MCP Server for LangChain

io.github.gabrielbbaldez/notify-hub

Send notifications across 23 channels with 36 AI-ready tools. One API, zero boilerplate.

client:LangChain transport:stdio runtime:oci

Install NotifyHub — Unified Notification MCP Server in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "notify-hub": {
            "transport": "stdio",
            "command": "docker",
            "args": ["run", "-i", "--rm", "ghcr.io/gabrielbbaldez/notify-hub:1.1.0"],
        }
})

tools = await client.get_tools()

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

NotifyHub — Unified Notification MCP Server in other clients