Skip to content
LangChain

pomodoro timer for LangChain

io.github.theluckystrike/pomodoro-timer

Pomodoro work sessions from your AI chat: timed focus blocks, session logs.

client:LangChain transport:streamable-http runtime:mcpb tools:14

Install pomodoro timer in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "pomodoro-timer": {
            "transport": "streamable_http",
            "url": "https://mcp.zovo.one/mcp/pomodoro-timer",
        }
})

tools = await client.get_tools()

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

What LangChain can do once it is connected

pomodoro timer in other clients