Skip to content
LangChain

noisy coding for LangChain

io.github.noisy/noisy-coding

Voice interface for Claude Code: talk to your agent and it talks back while it works.

client:LangChain transport:stdio runtime:oci

Install noisy coding in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "noisy-coding": {
            "transport": "stdio",
            "command": "docker",
            "args": ["run", "-i", "--rm", "docker.io/noisy/noisy-coding:2.13.3"],
        }
})

tools = await client.get_tools()

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

noisy coding in other clients