Skip to content
LangChain

Gitlab Public for LangChain

io.github.pipeworx-io/gitlab-public

GitLab Public MCP — wraps the GitLab REST API v4 (public endpoints, no auth)

client:LangChain transport:streamable-http

Install Gitlab Public in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "gitlab-public": {
            "transport": "streamable_http",
            "url": "https://gateway.pipeworx.io/gitlab-public/mcp",
        }
})

tools = await client.get_tools()

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

Gitlab Public in other clients