get_system_info
Retrieve system information from Palo Alto firewalls to monitor device status, configuration details, and operational data for network security management.
Instructions
Get system information from the Palo Alto firewall
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:205-215 (handler)Handler function for the 'get_system_info' tool. It makes an API call to '/Device/VirtualSystems' and returns the response as formatted JSON text.case 'get_system_info': { const response = await this.axiosInstance.get('/Device/VirtualSystems'); return { content: [ { type: 'text', text: JSON.stringify(response.data, null, 2), }, ], }; }
- src/index.ts:133-139 (registration)Registration of the 'get_system_info' tool in the ListTools response, including name, description, and empty input schema.name: 'get_system_info', description: 'Get system information from the Palo Alto firewall', inputSchema: { type: 'object', properties: {}, }, },
- src/index.ts:135-138 (schema)Input schema definition for 'get_system_info' tool, which requires no parameters.inputSchema: { type: 'object', properties: {}, },