Skip to content
LangChain

Webhook.site MCP Server for LangChain

io.github.zebbern/webhook-mcp-server

Capture HTTP, email, and DNS callbacks with webhook.site from MCP clients.

client:LangChain transport:stdio runtime:pypi

Install Webhook.site MCP Server in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "webhook-mcp-server": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["webhook-mcp-server"],
        }
})

tools = await client.get_tools()

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

Webhook.site MCP Server in other clients