Skip to content
LangChain

Taskforce for LangChain

ai.taskforcehq/taskforce

Task and planning workspace for humans collaborating with AI agents

client:LangChain transport:streamable-http

Install Taskforce in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "taskforce": {
            "transport": "streamable_http",
            "url": "https://mcp.taskforcehq.ai/mcp",
        }
})

tools = await client.get_tools()

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

Taskforce in other clients