Skip to content
LangChain

machine inbox for LangChain

com.machineinbox/machine-inbox

Task-scoped email inboxes for AI agents: read mail, extract verification codes, and reply.

client:LangChain transport:streamable-http tools:11

Install machine inbox in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "machine-inbox": {
            "transport": "streamable_http",
            "url": "https://machineinbox.com/mcp",
        }
})

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

machine inbox in other clients