Skip to main content
Glama

get_cronjobs

List and check the status of all cron jobs in SAP Commerce Cloud (Hybris) instances for system administration and monitoring.

Instructions

List all cron jobs and their status

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The core handler function getCronJobs() in HybrisClient class that performs the HAC API request to fetch the list of cron jobs and their status.
    async getCronJobs(): Promise<{ cronJobs: { code: string; active: boolean; status: string }[] }> { return this.hacRequest<{ cronJobs: { code: string; active: boolean; status: string }[] }>( `${this.hacPrefix}/monitoring/cronjobs`, { method: 'GET' } ); }
  • src/index.ts:189-196 (registration)
    MCP tool registration defining the name, description, and empty input schema for get_cronjobs.
    { name: 'get_cronjobs', description: 'List all cron jobs and their status', inputSchema: { type: 'object', properties: {}, }, },
  • TypeScript output type definition specifying the structure of the cron jobs response.
    async getCronJobs(): Promise<{ cronJobs: { code: string; active: boolean; status: string }[] }> {
  • Tool dispatcher case in the MCP callTool handler that invokes the getCronJobs method.
    case 'get_cronjobs': result = await hybrisClient.getCronJobs(); 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