Skip to content
LangChain

WireMock Cloud for LangChain

io.wiremock/wiremock-cloud

Build, validate, and manage API simulations in WireMock Cloud from MCP-compatible AI agents.

client:LangChain transport:streamable-http

Install WireMock Cloud in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "wiremock-cloud": {
            "transport": "streamable_http",
            "url": "https://mcp.wiremock.cloud/mcp",
        }
})

tools = await client.get_tools()

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

WireMock Cloud in other clients