Unknown/zm1990s/panw
Built by Metorial, the integration platform for agentic AI.
Unknown/zm1990s/panw
Server Summary
Real-time content risk analysis
Seamless integration with MCP-compatible clients
Support for multiple input types (text, code)
Content detection based on Palo Alto Networks AI Security API
Local and SSE server versions for different scenarios
PANW AI Runtime Security MCP 服务器允许您将 Palo Alto Networks AI 安全分析能力直接集成到任何支持Model Context Protocol (MCP)的客户端中,如 Claude Desktop、Visual Studio Code 或 Cursor IDE。
通过此服务器,您可以在使用大型语言模型时实时评估内容安全风险,确保人工智能交互的安全合规。
本软件按“原样”提供,作者不承担与本软件相关的任何担保,包括所有关于适销性和适用性的默示担保。在任何情况下,作者均不对任何因使用、数据或利润损失而导致的特殊、直接、间接或后果性损害或任何损害承担责任,无论是因合同、疏忽或其他侵权行为而导致的,也无论该等损害是否因使用或执行本软件而产生或与之相关。
本项目提供两个版本,分别适用于不同场景:
在开始使用前,您需要:
https://github.com/zm1990s/panw/tree/main/panw-mcp-server
Add More Tool 添加 PANW AIRS MCP Server{
"mcp": {
"servers": {
"PANW-AI-Security": {
"type": "stdio",
"command": "uv",
"args": [
"run",
"src/panw_airs_mcp_local.py"
],
"env": {
"AIRS_PROFILENAME": "PROFILENAME",
"AIRS_API_KEY": "APIKEY"
},
}
}
}
}
scan_with_airs_api 工具
在 VS Code 上的测试截图:
mcp.json 文件中粘贴以下配置:{
"mcpServers": {
"PANW-AI-Security": {
"command": "python",
"args": [
"~/ai/cursor/panw-mcp-server/local-version/src/panw_airs_mcp_local.py"
],
"env": {
"AIRS_API_KEY": "APIKEY",
"AIRS_PROFILENAME": "PROFILENAME"
}
}
}
}

目前有两个版本的 python 文件,如果使用 v2,则会从 http 请求中直接获取 key,无需设置环境变量,详见在 Dify 中调用 3。
export AIRS_API_KEY="您的API密钥"
export AIRS_PROFILENAME="您的配置文件名"
python sse-version/src/panw_airs_mcp_sse.py --host 0.0.0.0 --port 8080
cd sse-version
docker build -t panw-airs-mcp-sse .
cat >.env