Skip to main content
Glama

slack_files_get_upload_url_external

DestructiveIdempotent

Obtain a Slack external upload URL for posting files. Use the returned endpoint to upload file content securely without exposing your Slack credentials.

Instructions

Slack connector operation files_get_upload_url_external (platform tool slack.files_get_upload_url_external).

Routes only through the exact project/account governed connector authority.

Args: arguments: JSON string of arguments for the connector operation. project_id: Authenticated Project UUID. project_ref: Exact project correlation reference. connector_account_ref: Project-bound connector account alias. idempotency_key: Stable business-action identity. effect: Claimed read or write effect; Spring verifies it. approval_ref: Approved platform task UUID when resuming a write.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
effectNo
argumentsNo{}
project_idNo
project_refNo
approval_refNo
idempotency_keyNo
connector_account_refNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed6 schema fields changedv0.1.1
    • addedInput schema / properties / approval_ref
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "title": "Approval Ref"
      +}
    • addedInput schema / properties / connector_account_ref
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "title": "Connector Account Ref"
      +}
    • addedInput schema / properties / effect
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "title": "Effect"
      +}
    • addedInput schema / properties / idempotency_key
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "title": "Idempotency Key"
      +}
    • addedInput schema / properties / project_id
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "title": "Project Id"
      +}
    • addedInput schema / properties / project_ref
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "title": "Project Ref"
      +}
  2. First observedv0.1.0

TDQS

C2.1/5.0
Behavior2/5

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

The annotations carry the full safety profile (readOnlyHint=false, destructiveHint=true, idempotentHint=true), and the description adds almost no behavioral disclosure beyond them. It fails to explain the non-obvious destructiveHint on what is nominally a 'get' operation, nor does it disclose what the call returns or what side effects may occur on the Slack side. The routing note is about authority, not tool behavior.

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

Conciseness3/5

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

The argument list is compact and well-structured, and the routing sentence earns its place. But the opening line wastes space by restating the tool name and platform path that the agent already knows, and it is placed ahead of the more informative content. Acceptable but not tight.

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?

The description thoroughly documents governance plumbing (project_id, connector_account_ref, approval_ref, effect) but omits the operation's core role: it is the first step of Slack's two-step external upload flow and should be followed by `slack_files_complete_upload_external`. It also never says what the returned URL is for or what the `arguments` JSON must contain. For a 7-parameter tool with an unusual destructive annotation and no required params, these are significant gaps.

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

Parameters3/5

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

With 0% schema description coverage, the per-parameter list does add real meaning: 'JSON string of arguments', 'Authenticated Project UUID', 'Claimed read or write effect; Spring verifies it', and 'Approved platform task UUID when resuming a write' all go beyond the bare schema titles. However, the critical `arguments` field — the actual Slack API payload — remains opaque with no hint of required keys (e.g., filename, length), so an agent still cannot construct a correct invocation from this definition alone.

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 opening sentence merely restates the tool name: 'Slack connector operation `files_get_upload_url_external` (platform tool `slack.files_get_upload_url_external`)'. The text never states what the operation actually does — obtain a URL for uploading a file externally to Slack. It also provides no differentiation from the natural sibling `slack_files_complete_upload_external`, which completes the paired upload flow. The function must be inferred entirely from the name.

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

Usage Guidelines1/5

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

There is no guidance on when to select this tool versus alternatives. The sole contextual sentence, 'Routes only through the exact project/account governed connector authority,' is an authorization constraint, not a usage criterion. The description never mentions the complementary `slack_files_complete_upload_external` step or any scenario that would prompt an agent to invoke this operation.

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