Skip to main content
Glama

upload_work_item_attachment_from_url

Attach a file from a public URL to a work item by server-side download and S3 upload.

Instructions

Fetch a file from a public URL and attach it to a work item.

The MCP server downloads the file server-side and uploads it to Plane via the standard three-step presigned S3 flow. The source URL must be publicly accessible without authentication and must not resolve to a private/internal network address.

Args: project_id: UUID of the project work_item_id: UUID of the work item url: Publicly accessible URL of the file to attach (e.g. a GitHub raw URL, public S3 link, or direct download link) name: Override the filename. Defaults to the filename in the URL path.

Returns: Created attachment metadata: id, name, size, content_type.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYes
nameNo
project_idYes
work_item_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Behavior4/5

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

Annotations indicate readOnlyHint=false (write operation) and destructiveHint=false. The description adds valuable context: the server downloads the file server-side and uploads via a presigned S3 flow. It also notes the URL must be public and not internal. This goes beyond what annotations provide, though it could mention that the operation is not idempotent (consistent with the hint).

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 well-structured with a brief intro, a process explanation, then parameter details, and return info. It is concise but includes necessary details. The docstring format is slightly verbose for an MCP tool but still efficient.

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

Completeness4/5

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

Given the tool's complexity (file upload from URL via S3 flow), the description is fairly complete. It explains the process, parameter details, and return value. The output schema exists, so return values are further documented. Potential missing details like error handling or size limits are minor gaps.

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

Parameters5/5

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

The input schema has 0% description coverage for parameters. The description compensates fully by documenting each parameter in the 'Args' section: project_id and work_item_id as UUIDs, url with examples (GitHub raw, public S3), and name as an optional override with a default. This adds critical meaning beyond the bare schema.

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 clearly states the specific action: fetching a file from a public URL and attaching it to a work item. It includes the verb 'fetch' and 'attach', and identifies the resource as a work item attachment. This distinguishes it from sibling tools like read_work_item_attachment or delete_work_item_attachment.

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 explains when to use the tool (when you want to attach a file from a public URL) and includes important constraints: the URL must be publicly accessible and not resolve to a private/internal network. It also gives examples of acceptable URLs. While it does not explicitly state when not to use it or mention alternatives, the context of sibling tools provides implicit differentiation.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Bl4nk44/plane-ce-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server