mcp notify for LangChain
io.github.mrfqcentic/mcp-notify
Minimal MCP server that plays a sound and shows a system banner when an AI agent finishes a task
client:LangChain
transport:stdio
runtime:npm
Install mcp notify in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"mcp-notify": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "@mrfqcentic/mcp-notify"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs