Skip to content
LangChain

MixMake for LangChain

io.github.swappysh/mixmake

Transcript-based audio editing: transcribe audio, edit by word ID, export edited audio.

client:LangChain transport:streamable-http

Install MixMake in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

MixMake in other clients