Skip to content
LangChain

thask for LangChain

io.github.kimgh06/thask

Dependency-graph MCP server. Tells Claude/Cursor what breaks if you change X. Provenance guards.

client:LangChain transport:stdio runtime:npm

Install thask in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "thask": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@thask-org/cli"],
        }
})

tools = await client.get_tools()

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

thask in other clients