Skip to content
LangChain

ecobee mcp for LangChain

io.github.mrfentmen/ecobee-mcp

MCP server for ecobee thermostats: list, runtime, sensors. Needs API key + tokens.

client:LangChain transport:stdio runtime:npm

Install ecobee mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "ecobee-mcp": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "ecobee-mcp"],
        }
})

tools = await client.get_tools()

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

ecobee mcp in other clients