Skip to content
LangChain

Audioscrape Audio Intelligence for LangChain

com.audioscrape/audio-intelligence

Search speech in podcasts, government meetings, and your own audio: speakers, entities, timestamps.

client:LangChain transport:streamable-http

Install Audioscrape Audio Intelligence in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "audio-intelligence": {
            "transport": "streamable_http",
            "url": "https://mcp.audioscrape.com",
        }
})

tools = await client.get_tools()

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

Audioscrape Audio Intelligence in other clients