원클릭으로
juniper-mist-wifi-api
Interact with Juniper Mist WiFi API. Use when managing Mist orgs, sites, or APs.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Interact with Juniper Mist WiFi API. Use when managing Mist orgs, sites, or APs.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Analyze network packets using tshark (Wireshark CLI). Use when the user wants to capture live traffic, read .pcap/.pcapng files, filter packets by protocol or field, extract specific fields, drill into packet details, or generate traffic statistics. Covers live capture, pcap file analysis, display filters, field extraction, protocol drill-down, conversation stats, flow analysis, and JSON/PDML output for programmatic processing.
Automate EVE-NG network emulation lab creation, management, and topology deployment using evengsdk Python library and CLI. Use when you need to (1) Create or manage EVE-NG virtual network labs programmatically, (2) Deploy network topologies from YAML definitions, (3) Configure virtual network devices with templates or files, (4) Build automated test environments for network validation, (5) Manage nodes, networks, and links in EVE-NG labs, (6) Integrate network lab provisioning into CI/CD pipelines
Interact with the Juniper Mist WiFi cloud API to manage organizations, sites, access points, WLANs, clients, and retrieve stats. Use when the user wants to automate, query, or configure any aspect of a Juniper Mist wireless environment via REST API. Covers authentication setup, endpoint selection by region, and common CRUD operations across org and site scopes.
Living knowledge base of enterprise network infrastructure including topology, IP addressing, VLANs, monitoring tools, and security policies. Automatically updated as new network information is discovered during agent tasks.
Comprehensive network device automation using Ansible. Use when the agent needs to work with Ansible playbooks, inventories, or configurations for network devices (routers, switches, firewalls). Covers Cisco IOS/NX-OS/ASA, Juniper Junos, Arista EOS, and other network platforms. Use for creating playbooks, managing device configurations, gathering facts, troubleshooting network automation, or working with network modules.
Generate network topology diagrams in draw.io (diagrams.net) format from structured data. Use when Claude needs to: (1) Create network diagrams from JSON topology data containing devices and links, (2) Visualize network architecture with routers, switches, firewalls, servers and connections, (3) Generate .drawio XML files showing network topology with device icons and interface labels, (4) Convert text descriptions of network layouts into visual diagrams
| description | Interact with Juniper Mist WiFi API. Use when managing Mist orgs, sites, or APs. |
| metadata | {"author":"xtoftech","created":"2026-03-10","total-updates":0} |
| name | juniper-mist-wifi-api |
Overview
Prerequisites
https://api.mist.com/api/v1/org_id) you will operate on (you can list orgs to discover it).Authentication & headers
Authorization: Token <YOUR_API_TOKEN>Content-Type: application/jsonAuthorization: Token abc123def456 and Content-Type: application/jsonCommon endpoints and patterns (canonical forms)
limit, offset or filter params (e.g., ?site_id=123, ?mac=aa:bb:cc:dd:ee:ff).limit / offset or other metadata in the response to fetch additional pages.Step-by-step common workflows
id field.[ { "id": 12345, "name": "Acme Corp", ... } ] → use 12345 as org_id.id, name, address, timezone, and other metadata.id). Save site_id.site_id, mac, model etc.id, mac, ip, model, serial, status, and site_id.Error handling and common status codes
Common edge cases and how to handle them
Authorization: Token <token> header is present.org_id by listing orgs before acting. A site or device ID returned for a different org will cause 404 or permission errors.limit and offset (or provided meta/next links) to fetch all results.Retry-After header on 429 responses and implement exponential backoff.Concrete examples (requests & payloads)
id.Best practices for an agent using this skill
org_id programmatically via GET /orgs instead of hardcoding.References