get_system_info
Retrieve SAP Commerce Cloud (Hybris) system details and health status to monitor instance performance and diagnose issues.
Instructions
Get Hybris system information and health status
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/hybris-client.ts:505-510 (handler)The handler function that executes the get_system_info tool by making a HAC request to the /monitoring/system endpoint.async getSystemInfo(): Promise<Record<string, unknown>> { return this.hacRequest<Record<string, unknown>>( `${this.hacPrefix}/monitoring/system`, { method: 'GET' } ); }
- src/index.ts:224-231 (schema)The input schema and metadata for the get_system_info tool, defined in the tools array used for MCP listTools.{ name: 'get_system_info', description: 'Get Hybris system information and health status', inputSchema: { type: 'object', properties: {}, }, },
- src/index.ts:355-357 (registration)The registration/dispatch logic in the MCP server's CallToolRequest handler that routes 'get_system_info' calls to the HybrisClient handler.case 'get_system_info': result = await hybrisClient.getSystemInfo(); break;