Skip to content
LangChain

Google Slides MCP for LangChain

io.github.a1-x-tech/mcp-google-slides

MCP server for the Google Slides API: presentations, slides, text, shapes, images and tables.

client:LangChain transport:stdio runtime:npm

Install Google Slides MCP in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "mcp-google-slides": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@a1-x-tech/mcp-google-slides"],
        }
})

tools = await client.get_tools()

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

Google Slides MCP in other clients