Skip to content
LangChain

Github for LangChain

io.github.pipeworx-io/github

GitHub MCP — wraps the GitHub public REST API (no auth required for public endpoints)

client:LangChain transport:streamable-http

Install Github in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Github in other clients