Skip to content
LangChain

thunderbird cli for LangChain

io.github.vitalio-sh/thunderbird-cli

Give AI agents full read/write email access via Mozilla Thunderbird. Zero credentials.

client:LangChain transport:stdio runtime:npm

Install thunderbird cli in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

thunderbird cli in other clients