Skip to content
LangChain

MCP Scaleway Functions for LangChain

io.github.cyclimse/mcp-scaleway-functions

Unofficial MCP Server for Scaleway Serverless Functions

client:LangChain transport:stdio runtime:oci

Install MCP Scaleway Functions in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "mcp-scaleway-functions": {
            "transport": "stdio",
            "command": "docker",
            "args": ["run", "-i", "--rm", "docker.io/cyclimse/mcp-scaleway-functions:0.3.4"],
        }
})

tools = await client.get_tools()

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

MCP Scaleway Functions in other clients