human dispatch mcp for LangChain
io.github.zyntarasystems/human-dispatch-mcp
MCP server that dispatches physical-world tasks to humans through a unified API
client:LangChain
transport:stdio
runtime:npm
Install human dispatch mcp in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"human-dispatch-mcp": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "human-dispatch-mcp"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs