Skip to content
LangChain

Security Intel MCP for LangChain

io.github.selflabbs/security-intel-mcp

CVE lookups (NVD) and dependency-manifest audits (OSV) for AI agents. No API keys.

client:LangChain transport:streamable-http

Install Security Intel MCP in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "security-intel-mcp": {
            "transport": "streamable_http",
            "url": "https://security.selflabbs.com/mcp",
        }
})

tools = await client.get_tools()

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

Security Intel MCP in other clients