Skip to main content
Glama

get_job_status

Check the current status of a background job, such as a project copy, to determine if it is running, completed, or failed.

Instructions

Get the current status of a background job such as project copy.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
job_status_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
typeYes
statusYes
messageYes
projectYes
project_idYes
created_resource_idYes
created_resource_nameYes
created_resource_typeYes

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed4 schema fields changedv0.3.8
    • removedOutput schema / properties / created_at
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "type": "string"
      -    },
      -    {
      -      "type": "null"
      -    }
      -  ],
      -  "title": "Created At"
      -}
    • removedOutput schema / properties / percentage_complete
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "type": "integer"
      -    },
      -    {
      -      "type": "number"
      -    },
      -    {
      -      "type": "null"
      -    }
      -  ],
      -  "title": "Percentage Complete"
      -}
    • removedOutput schema / properties / updated_at
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "type": "string"
      -    },
      -    {
      -      "type": "null"
      -    }
      -  ],
      -  "title": "Updated At"
      -}
    • changedOutput schema / required
      Previous value: -[
      -  "id",
      -  "type",
      -  "status",
      -  "message",
      -  "created_at",
      -  "updated_at",
      -  "percentage_complete",
      -  "project_id",
      -  "project",
      -  "created_resource_type",
      -  "created_resource_id",
      -  "created_resource_name"
      -]New value: +[
      +  "id",
      +  "type",
      +  "status",
      +  "message",
      +  "project_id",
      +  "project",
      +  "created_resource_type",
      +  "created_resource_id",
      +  "created_resource_name"
      +]
  2. Changed4 schema fields changedv0.3.7
    • addedInput schema / additionalProperties
      Added value: +false
    • removedOutput schema / properties / links
      Removed value: -{
      -  "items": {
      -    "type": "string"
      -  },
      -  "title": "Links",
      -  "type": "array"
      -}
    • removedOutput schema / properties / url
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "type": "string"
      -    },
      -    {
      -      "type": "null"
      -    }
      -  ],
      -  "title": "Url"
      -}
    • changedOutput schema / required
      Previous value: -[
      -  "id",
      -  "type",
      -  "status",
      -  "message",
      -  "created_at",
      -  "updated_at",
      -  "percentage_complete",
      -  "project_id",
      -  "project",
      -  "created_resource_type",
      -  "created_resource_id",
      -  "created_resource_name",
      -  "links",
      -  "url"
      -]New value: +[
      +  "id",
      +  "type",
      +  "status",
      +  "message",
      +  "created_at",
      +  "updated_at",
      +  "percentage_complete",
      +  "project_id",
      +  "project",
      +  "created_resource_type",
      +  "created_resource_id",
      +  "created_resource_name"
      +]
  3. Changed2 schema fields changedv0.3.5
    • changedInput schema / properties / job_status_id / type
      Previous value: -"integer"New value: +"string"
    • changedOutput schema / properties / id / anyOf
      Previous value: -[
      -  {
      -    "type": "integer"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]New value: +[
      +  {
      +    "type": "string"
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
  4. Addedv0.3.3
  5. Removedv0.3.0
  6. First observedv0.2.2

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral burden. 'Get the current status' clearly indicates a read operation that returns a snapshot rather than mutating state. However, it does not mention whether the job is removed after retrieval, whether the endpoint is safe to poll repeatedly, or what happens if the job ID is invalid.

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 one sentence, front-loaded with the action, and contains no redundant information. The example adds clarity without bloat.

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 has only one required parameter and an output schema, the description is largely sufficient for an agent to understand the tool's purpose. The main missing context is the origin of job_status_id and any polling semantics, but the simplicity keeps this from being a critical gap.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must compensate for the parameter's meaning. The name job_status_id and the tool description imply the parameter identifies the job, but the description never explicitly states that job_status_id is the ID returned when the background job was created, nor does it explain how to obtain or format it.

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 identifies the verb ('Get'), the resource ('status of a background job'), and gives a concrete example ('project copy'). The 'background job' qualifier distinguishes it from sibling tools like get_status, which likely operate on work package statuses rather than job status.

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

Usage Guidelines3/5

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

The example 'such as project copy' implies it should be used to check on asynchronous background operations, which is useful but indirect. It provides no explicit guidance about when to poll, when not to use it, or how it relates to alternatives like get_status.

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

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/jtauschl/openproject-ce-mcp'

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