Skip to content
LangChain

Todos for LangChain

io.github.mctx-ai/todos

Personal todo list that persists across sessions. Create, update, complete, reorder, and delete todo

client:LangChain transport:sse

Install Todos in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "todos": {
            "transport": "streamable_http",
            "url": "https://todos.mctx.ai/v2.0.8",
        }
})

tools = await client.get_tools()

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

Todos in other clients