Skip to main content
Glama
benpalmer1

Gorgias MCP Server

by benpalmer1

Update Job

gorgias_update_job
Idempotent

Update an existing Gorgias job by ID to change its metadata, parameters, scheduled time, or status. Only specified fields are modified.

Instructions

PUT /api/jobs/{id} — Update a job by ID. Allows modification of meta, params, scheduled_datetime, and status. Only fields included in the request body are updated.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesThe unique ID of the job to update
metaNoMetadata associated with the job. Free-form key-value data not used by Gorgias.
paramsNoThe parameters of the job. Sub-fields available depend on the job type.
statusNoThe status of the job. Setting this field allows transitioning the job's state.
scheduled_datetimeNoISO 8601 datetime when the job is scheduled to start (max 60 minutes in the future). Set to null to queue for immediate execution.
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The annotations already signal that this is a non-read-only, idempotent operation. The description adds meaningful behavioral context by disclosing the partial-update behavior, which prevents agents from assuming omitted fields are reset. This goes beyond the structured annotations without contradicting them.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise—three short sentences front-loaded with the endpoint and action. Every sentence adds meaningful information (endpoint, modifiable fields, patch behavior) with no redundancy or fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's moderate complexity (nested params, no output schema), the description covers the essential behavioral context: what can be updated and how partial updates work. The schema fully documents the parameters, and the annotations cover idempotency. A small omission is not explaining job-type-specific param variations, but that is documented in the schema itself.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Although the input schema provides 100% parameter descriptions, the description adds value by stating that only fields in the request body are updated, clarifying parameter semantics for partial updates. This helps agents construct payloads without sending all fields. Beyond that, it does not duplicate schema details.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Update a job by ID') with the HTTP method and path. It lists the specific modifiable fields (meta, params, scheduled_datetime, status), which distinguishes it from sibling tools like create_job, cancel_job, and get_job.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context for using the tool on an existing job and explicitly notes the partial-update semantics ('Only fields included in the request body are updated'), which is important guidance. However, it does not explicitly compare against alternatives such as create_job or cancel_job, so it lacks explicit exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

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/benpalmer1/Gorgias-MCP-Server'

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