Skip to content
LangChain

Sherweb for LangChain

io.github.wyre-technology/sherweb-mcp

MCP server for Sherweb — billing, subscriptions, customers, and product catalog.

client:LangChain transport:stdio runtime:oci

Install Sherweb in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "sherweb-mcp": {
            "transport": "stdio",
            "command": "docker",
            "args": ["run", "-i", "--rm", "ghcr.io/wyre-technology/sherweb-mcp:v1.4.3"],
        }
})

tools = await client.get_tools()

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

Sherweb in other clients