Skip to content
LangChain

Polyglot SSG MCP for LangChain

io.github.hyperpolymath/poly-ssg-mcp

Unified MCP for 28 static site generators across 19 languages: Zola, Hakyll, and more

client:LangChain transport:stdio runtime:oci

Install Polyglot SSG MCP in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "poly-ssg-mcp": {
            "transport": "stdio",
            "command": "docker",
            "args": ["run", "-i", "--rm", "ghcr.io/hyperpolymath/poly-ssg-mcp:main"],
        }
})

tools = await client.get_tools()

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

Polyglot SSG MCP in other clients