Skip to content
LangChain

shouldigo surf for LangChain

io.github.orlench/shouldigo-surf

MCP server for Should I Go? — real-time surf conditions for 73+ beaches worldwide

client:LangChain transport:stdio runtime:npm

Install shouldigo surf in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "shouldigo-surf": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "shouldigo-surf-mcp"],
        }
})

tools = await client.get_tools()

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

shouldigo surf in other clients