Skip to main content
Glama

accelo_create_asset_link

Create asset links between an asset and an issue, job, prospect, or contract. Specify asset ID, linked object ID and type to associate them.

Instructions

Create an asset link between an asset and another object.

Args: asset_id: The asset to link (required) linked_object_id: ID of the object to link the asset to (required) linked_object_type: Object type to link to — one of the supported types for asset links (issue, job, prospect, contract) (required) description: Optional description of the link start_date: Optional link start date (unix timestamp) end_date: Optional link end date (unix timestamp)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
asset_idYes
end_dateNo
start_dateNo
descriptionNo
linked_object_idYes
linked_object_typeYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.2/5.0
Behavior2/5

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

With no annotations, the description carries full burden. It usefully constrains linked_object_type to the supported values (issue, job, prospect, contract), but says nothing about permission requirements, idempotency, duplicate-link handling, or the response for this mutation.

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?

One front-loaded summary sentence followed by a compact Args list. Every line adds information and there is no filler.

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

Completeness3/5

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

For a no-annotation mutation tool with no output schema, the description covers inputs well but omits behavior an agent needs: permissions, failure/conflict semantics, and whether a link can be duplicated or must be unique.

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

Parameters4/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 — and it does, documenting all six parameters, marking the three required ones, giving the unix-timestamp format for start_date/end_date, and enumerating valid linked_object_type values.

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?

States a specific verb ('Create') and resource ('asset link'), and names both endpoints (an asset and another object). It is readily distinguishable from sibling read/delete operations like accelo_list_asset_links and accelo_delete_asset_link, though it never explicitly names them.

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?

No when-to-use guidance is offered and no alternatives are referenced; the sibling accelo_delete_asset_link and accelo_list_asset_links are not mentioned. The agent must infer usage entirely from the name.

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