Skip to content
LangChain

Timequip for LangChain

com.timequip/timequip

Manage Timequip projects, tasks, comments, members, and dashboards through MCP.

client:LangChain transport:streamable-http

Install Timequip in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "timequip": {
            "transport": "streamable_http",
            "url": "https://mcp.timequip.com/mcp",
        }
})

tools = await client.get_tools()

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

Timequip in other clients