Skip to content
LangChain

excel mcp for LangChain

io.github.wesseltl/excel-mcp

Read real, messy Excel files from an agent: multiple sheets, title rows, merged cells.

client:LangChain transport:stdio runtime:pypi

Install excel mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "excel-mcp": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["excel-agent-mcp"],
        }
})

tools = await client.get_tools()

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

excel mcp in other clients