GhostFree for LangChain
io.github.shane-js/ghostfree
MCP server that scans your repo's dependencies for security vulnerabilities based on published CVEs.
client:LangChain
transport:stdio
runtime:npm
Install GhostFree in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"ghostfree": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "ghostfree"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs