Skip to main content
Glama

salesforce_bulk_query_status

Destructive

Check the status of a Salesforce bulk query job by providing its ID and retrieve current processing state.

Instructions

Run the salesforce domain agent action bulk_query_status.

Routes through the platform's domain-agent dispatcher under your JWT, tenant, and company scope.

Args: message: Free-text objective for the action. inputs: Optional JSON string of structured inputs for the action.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
inputsNo{}
messageNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed3 schema fields changedv0.1.1
    • removedInput schema / properties / arguments
      Removed value: -{
      -  "default": "{}",
      -  "title": "Arguments",
      -  "type": "string"
      -}
    • addedInput schema / properties / inputs
      Added value: +{
      +  "default": "{}",
      +  "title": "Inputs",
      +  "type": "string"
      +}
    • addedInput schema / properties / message
      Added value: +{
      +  "default": "",
      +  "title": "Message",
      +  "type": "string"
      +}
  2. First observedv0.1.0

TDQS

C2/5.0
Behavior2/5

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

The annotations already communicate readOnlyHint=false and destructiveHint=true, and the description adds only generic dispatcher routing context. Despite the tool name suggesting a status lookup, the description does not clarify whether invoking it has side effects or what the action does beyond being dispatched.

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

Conciseness2/5

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

The description is short, but brevity is not useful here because the content is entirely generic boilerplate. Every sentence could apply to any domain-agent dispatch tool, so none of them meaningfully help an agent understand this specific action.

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

Completeness2/5

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

Given the rich sibling context and the presence of related bulk query lifecycle tools, the description should explain what a status check is for, how the agent should identify the query, and what behavior to expect. The output schema reduces the need to describe return values, but the rest of the context is still missing.

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 needed to explain the parameters, but it only rephrases the schema: 'message' is a free-text objective and 'inputs' is an optional JSON string. It does not explain what message content or structured inputs this specific status action expects.

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

Purpose2/5

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

The description only says 'Run the salesforce domain agent action bulk_query_status,' which restates the tool name without defining what the action actually does. It never mentions checking the status of a bulk query, nor does it distinguish this tool from salesforce_bulk_query_create, salesforce_bulk_query_results, or connector_salesforce_bulk_query_status.

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

Usage Guidelines2/5

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

There is no guidance on when to use this tool versus any of the sibling bulk-query tools. The routing boilerplate about JWT, tenant, and company scope gives no selection criteria or usage context.

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

Deploy Server

Other Tools