Skip to content
LangChain

Albumora for LangChain

de.albumora/albumora

Event photo albums: list albums, status, share links, QR table cards (PDF), event schedule.

client:LangChain transport:streamable-http

Install Albumora in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "albumora": {
            "transport": "streamable_http",
            "url": "https://albumora.de/api/mcp",
        }
})

tools = await client.get_tools()

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

Albumora in other clients