Voibe for LangChain
com.getvoibe/transcription
Transcribe recordings into a speaker-labelled transcript with timestamps and a summary.
client:LangChain
transport:streamable-http
Install Voibe in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"transcription": {
"transport": "streamable_http",
"url": "https://api.getvoibe.com/mcp",
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs