Skip to main content
Glama

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
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • 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' } ); }
  • 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;

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Emenowicz/hybris-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server