Skip to content
LangChain

AI Agent Background Job Queue for LangChain

io.github.ansarii/mcp-durable-tasks

Durable background job execution, async task scheduling, and state persistence for AI agents.

client:LangChain transport:streamable-http

Install AI Agent Background Job Queue in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "mcp-durable-tasks": {
            "transport": "streamable_http",
            "url": "https://neon_innovation_lab--mcp-durable-tasks-job-queue-backend.apify.actor/mcp",
        }
})

tools = await client.get_tools()

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

AI Agent Background Job Queue in other clients