Skip to content
LangChain

Timill (cloud hosted instance) for LangChain

com.timillcloud/mcp

Your hosted Timill instance: query and edit your work-platform data with full per-user RBAC.

client:LangChain transport:streamable-http

Install Timill (cloud hosted instance) in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Timill (cloud hosted instance) in other clients