Skip to content
LangChain

Sherweb Platform MCP Server for LangChain

com.sherweb/platform

Sherweb Platform MCP server to manage subscriptions and orders. Use OpenID Connect to authenticate.

client:LangChain transport:streamable-http

Install Sherweb Platform MCP Server in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "platform": {
            "transport": "streamable_http",
            "url": "https://mcp.sherweb.com",
        }
})

tools = await client.get_tools()

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

Sherweb Platform MCP Server in other clients