Skip to content
LangChain

Bright Security for LangChain

com.brightsec/mcp

Enables AI agents to access Bright Security tools for app discovery and security testing.

client:LangChain transport:streamable-http

Install Bright Security in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "mcp": {
            "transport": "streamable_http",
            "url": "https://{instance}.brightsec.com/mcp",
        }
})

tools = await client.get_tools()

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

Bright Security in other clients