gotify mcp for LangChain
io.github.kcofoni/gotify-mcp
MCP server for Gotify push notifications - send messages and manage apps/clients.
client:LangChain
transport:stdio
runtime:oci
Install gotify mcp in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"gotify-mcp": {
"transport": "stdio",
"command": "docker",
"args": ["run", "-i", "--rm", "docker.io/kcofoni/gotify-mcp:v1.0.1"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs