Skip to content
LangChain

mcp listen for LangChain

io.github.analyticsinmotion/mcp-listen

Give your AI agents the ability to listen. Microphone capture and speech-to-text.

client:LangChain transport:stdio runtime:npm

Install mcp listen in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "mcp-listen": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "mcp-listen"],
        }
})

tools = await client.get_tools()

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

mcp listen in other clients