Skip to main content
Glama
sipyourdrink-ltd

Bernstein - Multi-agent orchestration

bernstein_post_artifact

Post versioned artifacts—reports, tables, links, or findings—to a task on Bernstein, enabling agents to share structured outputs.

Instructions

Post a versioned artifact to a task on the Bernstein server. Host effects: makes network requests.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
keyYes
urlNo
bodyNo
rowsNo
toolNo
posterYes
targetNo
columnsNo
task_idYes
link_kindNo
sarif_resultNo
tool_versionNo
artifact_typeYes
invocation_argv_hashNo
pinned_ruleset_or_feed_digestNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed8 schema fields changedv3.18.1
    • changedInput schema / allOf
      Previous value: -[
      -  {
      -    "if": {
      -      "properties": {
      -        "artifact_type": {
      -          "const": "report"
      -        }
      -      },
      -      "required": [
      -        "artifact_type"
      -      ]
      -    },
      -    "then": {
      -      "required": [
      -        "body"
      -      ]
      -    }
      -  },
      -  {
      -    "if": {
      -      "properties": {
      -        "artifact_type": {
      -          "const": "table"
      -        }
      -      },
      -      "required": [
      -        "artifact_type"
      -      ]
      -    },
      -    "then": {
      -      "required": [
      -        "columns",
      -        "rows"
      -      ]
      -    }
      -  },
      -  {
      -    "if": {
      -      "properties": {
      -        "artifact_type": {
      -          "const": "link"
      -        }
      -      },
      -      "required": [
      -        "artifact_type"
      -      ]
      -    },
      -    "then": {
      -      "required": [
      -        "url",
      -        "link_kind"
      -      ]
      -    }
      -  }
      -]New value: +[
      +  {
      +    "if": {
      +      "properties": {
      +        "artifact_type": {
      +          "const": "report"
      +        }
      +      },
      +      "required": [
      +        "artifact_type"
      +      ]
      +    },
      +    "then": {
      +      "required": [
      +        "body"
      +      ]
      +    }
      +  },
      +  {
      +    "if": {
      +      "properties": {
      +        "artifact_type": {
      +          "const": "table"
      +        }
      +      },
      +      "required": [
      +        "artifact_type"
      +      ]
      +    },
      +    "then": {
      +      "required": [
      +        "columns",
      +        "rows"
      +      ]
      +    }
      +  },
      +  {
      +    "if": {
      +      "properties": {
      +        "artifact_type": {
      +          "const": "link"
      +        }
      +      },
      +      "required": [
      +        "artifact_type"
      +      ]
      +    },
      +    "then": {
      +      "required": [
      +        "url",
      +        "link_kind"
      +      ]
      +    }
      +  },
      +  {
      +    "if": {
      +      "properties": {
      +        "artifact_type": {
      +          "const": "finding"
      +        }
      +      },
      +      "required": [
      +        "artifact_type"
      +      ]
      +    },
      +    "then": {
      +      "required": [
      +        "sarif_result"
      +      ]
      +    }
      +  }
      +]
    • changedInput schema / properties / artifact_type / enum
      Previous value: -[
      -  "report",
      -  "table",
      -  "link"
      -]New value: +[
      +  "report",
      +  "table",
      +  "link",
      +  "finding"
      +]
    • addedInput schema / properties / invocation_argv_hash
      Added value: +{
      +  "maxLength": 256,
      +  "type": "string"
      +}
    • addedInput schema / properties / pinned_ruleset_or_feed_digest
      Added value: +{
      +  "maxLength": 256,
      +  "type": "string"
      +}
    • addedInput schema / properties / sarif_result
      Added value: +{
      +  "type": "object"
      +}
    • addedInput schema / properties / target
      Added value: +{
      +  "maxLength": 4096,
      +  "type": "string"
      +}
    • addedInput schema / properties / tool
      Added value: +{
      +  "maxLength": 256,
      +  "minLength": 1,
      +  "type": "string"
      +}
    • addedInput schema / properties / tool_version
      Added value: +{
      +  "maxLength": 128,
      +  "type": "string"
      +}
  2. Changed2 schema fields changedv3.15.0
    • addedInput schema / description
      Added value: +"Post a versioned artifact to a task on the Bernstein server. Host effects: makes network requests."
    • addedInput schema / timeoutSeconds
      Added value: +30
  3. Changed41 schema fields changedv3.11.0
    • addedInput schema / $schema
      Added value: +"http://json-schema.org/draft-07/schema#"
    • addedInput schema / additionalProperties
      Added value: +false
    • addedInput schema / allOf
      Added value: +[
      +  {
      +    "if": {
      +      "properties": {
      +        "artifact_type": {
      +          "const": "report"
      +        }
      +      },
      +      "required": [
      +        "artifact_type"
      +      ]
      +    },
      +    "then": {
      +      "required": [
      +        "body"
      +      ]
      +    }
      +  },
      +  {
      +    "if": {
      +      "properties": {
      +        "artifact_type": {
      +          "const": "table"
      +        }
      +      },
      +      "required": [
      +        "artifact_type"
      +      ]
      +    },
      +    "then": {
      +      "required": [
      +        "columns",
      +        "rows"
      +      ]
      +    }
      +  },
      +  {
      +    "if": {
      +      "properties": {
      +        "artifact_type": {
      +          "const": "link"
      +        }
      +      },
      +      "required": [
      +        "artifact_type"
      +      ]
      +    },
      +    "then": {
      +      "required": [
      +        "url",
      +        "link_kind"
      +      ]
      +    }
      +  }
      +]
    • addedInput schema / properties / artifact_type / enum
      Added value: +[
      +  "report",
      +  "table",
      +  "link"
      +]
    • removedInput schema / properties / artifact_type / title
      Removed value: -"Artifact Type"
    • removedInput schema / properties / body / default
      Removed value: -""
    • addedInput schema / properties / body / maxLength
      Added value: +60000
    • addedInput schema / properties / body / minLength
      Added value: +1
    • removedInput schema / properties / body / title
      Removed value: -"Body"
    • removedInput schema / properties / columns / anyOf
      Removed value: -[
      -  {
      -    "items": {
      -      "type": "string"
      -    },
      -    "type": "array"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]
    • removedInput schema / properties / columns / default
      Removed value: -null
    • addedInput schema / properties / columns / items
      Added value: +{
      +  "maxLength": 256,
      +  "minLength": 1,
      +  "type": "string"
      +}
    • addedInput schema / properties / columns / maxItems
      Added value: +64
    • addedInput schema / properties / columns / minItems
      Added value: +1
    • removedInput schema / properties / columns / title
      Removed value: -"Columns"
    • addedInput schema / properties / columns / type
      Added value: +"array"
    • addedInput schema / properties / key / maxLength
      Added value: +128
    • addedInput schema / properties / key / minLength
      Added value: +1
    • addedInput schema / properties / key / pattern
      Added value: +"^[A-Za-z0-9][A-Za-z0-9_.-]{0,127}$"
    • removedInput schema / properties / key / title
      Removed value: -"Key"
    • removedInput schema / properties / link_kind / default
      Removed value: -""
    • addedInput schema / properties / link_kind / enum
      Added value: +[
      +  "preview",
      +  "dashboard",
      +  "document"
      +]
    • removedInput schema / properties / link_kind / title
      Removed value: -"Link Kind"
    • addedInput schema / properties / poster / maxLength
      Added value: +256
    • addedInput schema / properties / poster / minLength
      Added value: +1
    • removedInput schema / properties / poster / title
      Removed value: -"Poster"
    • removedInput schema / properties / rows / anyOf
      Removed value: -[
      -  {
      -    "items": {
      -      "items": {
      -        "type": "string"
      -      },
      -      "type": "array"
      -    },
      -    "type": "array"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]
    • removedInput schema / properties / rows / default
      Removed value: -null
    • addedInput schema / properties / rows / items
      Added value: +{
      +  "items": {
      +    "maxLength": 4096,
      +    "type": "string"
      +  },
      +  "maxItems": 64,
      +  "type": "array"
      +}
    • addedInput schema / properties / rows / maxItems
      Added value: +4096
    • removedInput schema / properties / rows / title
      Removed value: -"Rows"
    • addedInput schema / properties / rows / type
      Added value: +"array"
    • addedInput schema / properties / task_id / maxLength
      Added value: +256
    • addedInput schema / properties / task_id / minLength
      Added value: +1
    • addedInput schema / properties / task_id / pattern
      Added value: +"^[A-Za-z0-9_.:-]+$"
    • removedInput schema / properties / task_id / title
      Removed value: -"Task Id"
    • removedInput schema / properties / url / default
      Removed value: -""
    • addedInput schema / properties / url / maxLength
      Added value: +4096
    • addedInput schema / properties / url / minLength
      Added value: +1
    • removedInput schema / properties / url / title
      Removed value: -"Url"
    • changedInput schema / title
      Previous value: -"bernstein_post_artifactArguments"New value: +"bernstein_post_artifact"
  4. Addedv3.7.0

TDQS

C2.6/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It adds only 'Host effects: makes network requests,' which is marginal because 'post' already implies a network request. It does not disclose versioning behavior, task state changes, idempotency, or failure semantics.

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

Conciseness4/5

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

The description is two short sentences with no filler, and the core action is front-loaded. However, the 'Host effects' sentence is boilerplate and adds little information, preventing a top score.

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?

This is a complex tool with 15 parameters, conditional requirements, and four artifact_type variants, yet the description provides almost none of that context. Even though an output schema exists and return-value documentation is not required, the missing parameter semantics and usage guidance leave the description incomplete.

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?

Schema description coverage is 0%, so the description must compensate for 15 parameters, but it explains none of them. It does not clarify artifact_type variants, required conditional fields, link_kind values, or the meaning of key, poster, target, or invocation_argv_hash.

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

Purpose4/5

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

The description clearly states the action and resource: 'Post a versioned artifact to a task on the Bernstein server.' This is a specific verb plus resource and is distinguishable from siblings like bernstein_post_message by the artifact focus, but it does not explicitly differentiate itself from any sibling or mention the artifact_type variants.

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 bernstein_post_message or other artifact-related operations. The phrase 'versioned artifact' implies a niche, but no context, exclusions, or alternative tool referrals are provided.

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