Skip to content
LangChain

github actions for LangChain

io.github.ofershap/github-actions

GitHub Actions MCP — view runs, read logs, re-run jobs, and manage CI/CD.

client:LangChain transport:stdio runtime:npm

Install github actions in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

github actions in other clients