Skip to main content
Glama

Agent Jobs MCP Server

list_jobs

Retrieve agent jobs with filters like status, scheduled time, job type, channel code, and pagination for efficient job management and tracking.

Instructions

Retrieves a list of agent jobs, with optional filters and pagination.

Input Schema

NameRequiredDescriptionDefault
channel_codeNoFilter by the channel code (e.g., 'C123456' for a Slack channel).
created_at_gteNoFilter for jobs created at or after a specific time (ISO 8601).
created_at_lteNoFilter for jobs created at or before a specific time (ISO 8601).
job_type_idNoFilter by the specific job type ID (e.g., 'daily-report').
limitNoMaximum number of jobs to return (e.g.,20). Default is 20.
offsetNoNumber of jobs to skip, used for pagination. Default is 0.
org_idNoFilter by organization ID. If not provided, the default from the environment is used.
scheduled_atNoFilter by the exact scheduled time in ISO 8601 format (e.g., '2024-07-23T10:00:00Z').
scheduled_at_gteNoFilter for jobs scheduled at or after a specific time (ISO 8601).
scheduled_at_lteNoFilter for jobs scheduled at or before a specific time (ISO 8601).
sortNoField to sort by and direction. Format is 'field:direction'. Example: 'created_at:desc'.
statusNoFilter by job status. Possible values are: 'waiting', 'scheduled', 'running', 'completed', 'failed', 'canceled'.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "channel_code": { "description": "Filter by the channel code (e.g., 'C123456' for a Slack channel).", "type": "string" }, "created_at_gte": { "$ref": "#/properties/scheduled_at", "description": "Filter for jobs created at or after a specific time (ISO 8601)." }, "created_at_lte": { "$ref": "#/properties/scheduled_at", "description": "Filter for jobs created at or before a specific time (ISO 8601)." }, "job_type_id": { "description": "Filter by the specific job type ID (e.g., 'daily-report').", "type": "string" }, "limit": { "description": "Maximum number of jobs to return (e.g.,20). Default is 20.", "exclusiveMinimum": 0, "type": "integer" }, "offset": { "description": "Number of jobs to skip, used for pagination. Default is 0.", "minimum": 0, "type": "integer" }, "org_id": { "description": "Filter by organization ID. If not provided, the default from the environment is used.", "type": "string" }, "scheduled_at": { "description": "Filter by the exact scheduled time in ISO 8601 format (e.g., '2024-07-23T10:00:00Z').", "type": "string" }, "scheduled_at_gte": { "$ref": "#/properties/scheduled_at", "description": "Filter for jobs scheduled at or after a specific time (ISO 8601)." }, "scheduled_at_lte": { "$ref": "#/properties/scheduled_at", "description": "Filter for jobs scheduled at or before a specific time (ISO 8601)." }, "sort": { "description": "Field to sort by and direction. Format is 'field:direction'. Example: 'created_at:desc'.", "type": "string" }, "status": { "description": "Filter by job status. Possible values are: 'waiting', 'scheduled', 'running', 'completed', 'failed', 'canceled'.", "enum": [ "waiting", "scheduled", "running", "completed", "failed", "canceled" ], "type": "string" } }, "type": "object" }
Install Server

Other Tools from Agent Jobs MCP Server

Related Tools

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/aiconnect-cloud/agentjobs-mcp'

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