Skip to content
LangChain

Georgia Archives for LangChain

io.github.pipeworx-io/georgia-archives

National Archives of Georgia MCP — the three catalogues the archives publish.

client:LangChain transport:streamable-http

Install Georgia Archives in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "georgia-archives": {
            "transport": "streamable_http",
            "url": "https://gateway.pipeworx.io/georgia-archives/mcp",
        }
})

tools = await client.get_tools()

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

Georgia Archives in other clients