Skip to content
LangChain

PostgreSQL CVE & Release Intelligence for LangChain

io.github.meob/pg-cve-mcp

PostgreSQL security for AI agents: CVEs, yanked releases, exploits, and upgrade paths

client:LangChain transport:stdio runtime:pypi

Install PostgreSQL CVE & Release Intelligence in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "pg-cve-mcp": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["pg-cve-mcp"],
        }
})

tools = await client.get_tools()

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

PostgreSQL CVE & Release Intelligence in other clients