Skip to main content
Glama
sipyourdrink-ltd

Bernstein - Multi-agent orchestration

bernstein_claim

Claim the next eligible task for an agent, updating assignment state on the server to reserve work and prevent duplicate processing.

Instructions

Claim the next eligible task for an agent. This changes task assignment state on the Bernstein server. Host effects: makes network requests.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
roleNo
projectNo
capabilityNo
claimer_idYes
max_attemptsNo
completed_idsNo
claimer_card_fingerprintNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv3.15.0
    • addedInput schema / description
      Added value: +"Claim the next eligible task for an agent. This changes task assignment state on the Bernstein server. Host effects: makes network requests."
  2. Changed39 schema fields changedv3.11.0
    • addedInput schema / $schema
      Added value: +"http://json-schema.org/draft-07/schema#"
    • addedInput schema / additionalProperties
      Added value: +false
    • removedInput schema / properties / capability / anyOf
      Removed value: -[
      -  {
      -    "type": "string"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]
    • removedInput schema / properties / capability / default
      Removed value: -null
    • addedInput schema / properties / capability / maxLength
      Added value: +256
    • removedInput schema / properties / capability / title
      Removed value: -"Capability"
    • addedInput schema / properties / capability / type
      Added value: +[
      +  "string",
      +  "null"
      +]
    • removedInput schema / properties / claimer_card_fingerprint / anyOf
      Removed value: -[
      -  {
      -    "type": "string"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]
    • removedInput schema / properties / claimer_card_fingerprint / default
      Removed value: -null
    • addedInput schema / properties / claimer_card_fingerprint / maxLength
      Added value: +256
    • removedInput schema / properties / claimer_card_fingerprint / title
      Removed value: -"Claimer Card Fingerprint"
    • addedInput schema / properties / claimer_card_fingerprint / type
      Added value: +[
      +  "string",
      +  "null"
      +]
    • addedInput schema / properties / claimer_id / maxLength
      Added value: +256
    • addedInput schema / properties / claimer_id / minLength
      Added value: +1
    • addedInput schema / properties / claimer_id / pattern
      Added value: +"^[A-Za-z0-9_.:-]+$"
    • removedInput schema / properties / claimer_id / title
      Removed value: -"Claimer Id"
    • removedInput schema / properties / completed_ids / anyOf
      Removed value: -[
      -  {
      -    "items": {
      -      "type": "string"
      -    },
      -    "type": "array"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]
    • removedInput schema / properties / completed_ids / default
      Removed value: -null
    • addedInput schema / properties / completed_ids / items
      Added value: +{
      +  "maxLength": 256,
      +  "minLength": 1,
      +  "pattern": "^[A-Za-z0-9_.:-]+$",
      +  "type": "string"
      +}
    • addedInput schema / properties / completed_ids / maxItems
      Added value: +4096
    • removedInput schema / properties / completed_ids / title
      Removed value: -"Completed Ids"
    • addedInput schema / properties / completed_ids / type
      Added value: +"array"
    • removedInput schema / properties / max_attempts / anyOf
      Removed value: -[
      -  {
      -    "type": "integer"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]
    • removedInput schema / properties / max_attempts / default
      Removed value: -null
    • addedInput schema / properties / max_attempts / maximum
      Added value: +100000
    • addedInput schema / properties / max_attempts / minimum
      Added value: +0
    • removedInput schema / properties / max_attempts / title
      Removed value: -"Max Attempts"
    • addedInput schema / properties / max_attempts / type
      Added value: +[
      +  "integer",
      +  "null"
      +]
    • removedInput schema / properties / project / anyOf
      Removed value: -[
      -  {
      -    "type": "string"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]
    • removedInput schema / properties / project / default
      Removed value: -null
    • addedInput schema / properties / project / maxLength
      Added value: +256
    • removedInput schema / properties / project / title
      Removed value: -"Project"
    • addedInput schema / properties / project / type
      Added value: +[
      +  "string",
      +  "null"
      +]
    • removedInput schema / properties / role / anyOf
      Removed value: -[
      -  {
      -    "type": "string"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]
    • removedInput schema / properties / role / default
      Removed value: -null
    • addedInput schema / properties / role / maxLength
      Added value: +64
    • removedInput schema / properties / role / title
      Removed value: -"Role"
    • addedInput schema / properties / role / type
      Added value: +[
      +  "string",
      +  "null"
      +]
    • changedInput schema / title
      Previous value: -"bernstein_claimArguments"New value: +"bernstein_claim"
  3. Addedv3.7.0

TDQS

A3.7/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It explicitly states that the tool changes task assignment state and makes network requests ('Host effects: makes network requests'). This goes beyond a simple 'claim' verb and informs the agent of side effects, though it does not cover authorization or reversibility.

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?

Three short sentences deliver the action, the state change, and the host effect without redundancy. Every sentence adds unique value, and the description is front-loaded with the core purpose.

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 tool's complexity (7 parameters, state-changing, network requests) and lack of annotations, the description is incomplete. It does not address parameter semantics, eligibility criteria, or usage guidance, and though an output schema exists, the missing parameter context prevents a fully capable agent from using the tool effectively.

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

Parameters1/5

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

The schema description coverage is 0%, and the tool description does not explain any of the seven parameters (role, project, capability, claimer_id, max_attempts, completed_ids, claimer_card_fingerprint). The agent is left to infer semantics purely from parameter names, which is inadequate for correct invocation.

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 uses a specific verb ('Claim') and resource ('next eligible task for an agent'), clearly distinguishing it from siblings like bernstein_complete or bernstein_cancel. It also clarifies the state-changing nature by stating 'This changes task assignment state on the Bernstein server.'

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 when to use the tool: when an agent needs to claim the next eligible task. It does not explicitly mention alternatives or when-not-to-use, but the purpose is self-evident and distinct from sibling tools. No exclusions are necessary for this action.

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