Skip to content
LangChain

Recordo: Task Planner & Notes for LangChain

app.recordo.api/recordo

Brain dump, routines, task planning, focus, and instant thought retrieval

client:LangChain transport:streamable-http

Install Recordo: Task Planner & Notes in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "recordo": {
            "transport": "streamable_http",
            "url": "https://api.recordo.app/api/mcp/adhd/mcp",
        }
})

tools = await client.get_tools()

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

Recordo: Task Planner & Notes in other clients