decibel shield for LangChain
app.decibelshield/decibel-shield
Noise data tools: city noise rankings, decibel levels of common sounds, NIOSH safe-exposure math.
client:LangChain
transport:streamable-http
tools:10
Install decibel shield in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"decibel-shield": {
"transport": "streamable_http",
"url": "https://decibelshield.app/api/mcp",
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs