Skip to content
LangChain

thoth mcp for LangChain

io.github.zeiq-co/thoth-mcp

MCP server for Thoth with multi-platform AI content generation

client:LangChain transport:stdio runtime:npm

Install thoth mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "thoth-mcp": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@usethoth/mcp-server"],
        }
})

tools = await client.get_tools()

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

thoth mcp in other clients