workflowy for LangChain
io.github.mholzen/workflowy
Create, update, complete nodes, search & replace with regex and dry run, usage reports, transforms
client:LangChain
transport:stdio
runtime:oci
Install workflowy in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"workflowy": {
"transport": "stdio",
"command": "docker",
"args": ["run", "-i", "--rm", "ghcr.io/mholzen/workflowy:0.8.1"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs