npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

prisma-airs-ops-mcp-server

v0.1.0

Published

Operations-focused MCP server for Prisma AIRS configuration, governance, red teaming, and model security

Readme

Prisma AIRS Operations MCP Server

Operations-focused Model Context Protocol server for Palo Alto Networks Prisma AIRS.

This package is intentionally broader than a runtime scanning MCP server. It exposes the Prisma AIRS control plane to MCP clients: profile and topic inventory, guardrail operations, scan-log investigation, AI Red Team operations, and Model Security workflows.

Status

Initial TypeScript scaffold and MVP tool surface.

Install

npm install -g prisma-airs-ops-mcp-server
prisma-airs-ops-mcp

Or run directly:

npx prisma-airs-ops-mcp-server

Configuration

Use environment variables. Start from .env.example.

# Runtime scan API
PANW_AI_SEC_API_KEY=

# Operations / management APIs
PANW_MGMT_CLIENT_ID=
PANW_MGMT_CLIENT_SECRET=
PANW_MGMT_TSG_ID=

Optional safety switches:

PRISMA_AIRS_MCP_ENABLE_DESTRUCTIVE_TOOLS=false
PRISMA_AIRS_MCP_ENABLE_SECRET_TOOLS=false

Destructive tools include operations such as aborting scans, deleting labels, and reverting topics. Secret tools include operations that may return tokens or private package URLs.

Claude Desktop Example

{
  "mcpServers": {
    "prisma-airs-ops": {
      "command": "npx",
      "args": ["prisma-airs-ops-mcp-server"],
      "env": {
        "PANW_AI_SEC_API_KEY": "your-scan-api-key",
        "PANW_MGMT_CLIENT_ID": "your-client-id",
        "PANW_MGMT_CLIENT_SECRET": "your-client-secret",
        "PANW_MGMT_TSG_ID": "your-tsg-id"
      }
    }
  }
}

Tool Groups

Utility

  • airs_ops_capabilities
  • airs_ops_tooling_notes

Runtime

  • airs_runtime_scan
  • airs_runtime_bulk_scan_submit
  • airs_runtime_bulk_scan_poll

Profiles, Topics, And Management

  • airs_profiles_list
  • airs_profiles_get
  • airs_profile_topics_get
  • airs_topics_list
  • airs_topics_get
  • airs_topics_upsert
  • airs_topics_apply_to_profile
  • airs_topics_evaluate_prompts
  • airs_topics_revert_from_profile
  • airs_deployment_profiles_list
  • airs_dlp_profiles_list
  • airs_customer_apps_list
  • airs_customer_apps_get
  • airs_scan_logs_query
  • airs_api_keys_list

AI Red Team

  • airs_redteam_targets_list
  • airs_redteam_target_get
  • airs_redteam_target_create
  • airs_redteam_target_probe
  • airs_redteam_scans_list
  • airs_redteam_scan_status
  • airs_redteam_scan_create
  • airs_redteam_scan_report
  • airs_redteam_scan_abort
  • airs_redteam_categories_list
  • airs_redteam_eula_status
  • airs_redteam_registry_credentials

Model Security

  • airs_model_security_groups_list
  • airs_model_security_group_get
  • airs_model_security_rules_list
  • airs_model_security_rule_get
  • airs_model_security_rule_instances_list
  • airs_model_security_scans_list
  • airs_model_security_scan_get
  • airs_model_security_scan_create
  • airs_model_security_evaluations_list
  • airs_model_security_violations_list
  • airs_model_security_files_list
  • airs_model_security_labels_add
  • airs_model_security_labels_delete
  • airs_model_security_pypi_auth

Design Notes

This server calls the Prisma AIRS CLI TypeScript service layer directly. It does not shell out to the airs binary for normal operations. That keeps outputs structured, makes errors easier for agents to interpret, and avoids parsing terminal-oriented text.

The server uses stdio transport by default because it is the most portable way to run from npx inside MCP clients.