Skip to content
LangChain

speechmatics for LangChain

io.usefulapi/speechmatics

Transcribe audio and video with Speechmatics speech-to-text from Claude and any MCP client.

client:LangChain transport:streamable-http

Install speechmatics in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "speechmatics": {
            "transport": "streamable_http",
            "url": "https://speechmatics.usefulapi.io/mcp",
        }
})

tools = await client.get_tools()

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

speechmatics in other clients