Shrike for LangChain
io.github.shrike-security/shrike-mcp
Governs what AI agents do: tool calls, SQL, commands, files checked against policy before they run.
client:LangChain
transport:stdio
runtime:npm
Install Shrike in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"shrike-mcp": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "shrike-mcp"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs