Skip to main content
Glama
linusdevx
by linusdevx

Upload integration artifact

upload_integration_artifact
Destructive

Create or update an integration artifact in a package from a local zip file, using mode 'create' for new artifacts or 'update' to replace an existing one.

Instructions

Create or update an integration design-time artifact from a local zip file. Use mode 'create' to add a new artifact to a package, or 'update' to replace an existing one.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
modeYes
nameYes
versionNo
file_pathYes
package_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A3.9/5.0
Behavior4/5

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

The destructiveHint annotation already signals mutating behavior, and the description adds meaningful detail by explicitly stating that 'update' replaces an existing artifact. It also clarifies the local zip file source, which helps the agent understand the operation's behavior beyond the annotation alone.

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 two sentences with no filler. It front-loads the core action and immediately provides mode-specific behavior, making every sentence earn its place.

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 six parameters, five of which are required, no output schema, and no parameter-level descriptions, the description is too thin to fully guide invocation. Key details such as what 'id' represents, how it should be supplied for create vs update, and the meaning of 'name' and 'version' are 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?

With 0% schema description coverage, the description must compensate, but it only clarifies 'mode' and 'file_path' (a local zip file). The roles of 'id', 'name', 'package_id', and 'version' are left unexplained, especially important for required parameters in create vs update scenarios.

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 explicitly states the action ('Create or update') and the resource ('integration design-time artifact'), with a clear source ('local zip file'). It distinguishes itself from siblings like download_integration_artifact and deploy_integration_artifact by focusing on design-time artifact creation/update.

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 gives clear guidance on mode selection: use 'create' for a new artifact and 'update' to replace an existing one. It does not explicitly mention when not to use the tool versus alternatives, but the mode-based usage context is clear and actionable.

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