Skip to content
LangChain

action runtime sunset lint for LangChain

io.github.jmshinhwa/action-runtime-sunset-lint

Finds the GitHub Actions steps that stop running on 2026-09-23, with the version to move to

client:LangChain transport:stdio runtime:npm

Install action runtime sunset lint in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "action-runtime-sunset-lint": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@readystack/action-runtime-sunset-lint"],
        }
})

tools = await client.get_tools()

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

action runtime sunset lint in other clients