agentpack for LangChain
io.github.ihorponom/agentpack
Repo-native task continuity for AI coding agents: a reviewed task-state ledger served over MCP.
client:LangChain
transport:stdio
runtime:npm
Install agentpack in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"agentpack": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "agentpack-cli"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs