get_system_info
Retrieve system information from Palo Alto firewalls to monitor device status and configuration details 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)The handler logic for the 'get_system_info' tool. It makes an API GET request to '/Device/VirtualSystems' using the configured axios instance and returns the response data as a text content block.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)The tool registration entry in the ListTools response, including name, description, and input schema (empty object).name: 'get_system_info', description: 'Get system information from the Palo Alto firewall', inputSchema: { type: 'object', properties: {}, }, },
- src/index.ts:135-138 (schema)The input schema definition for the 'get_system_info' tool, which expects an empty object.inputSchema: { type: 'object', properties: {}, },