Skip to main content
Glama

accelo_update_activity

Update an existing Accelo CRM activity to change its subject, body, visibility, priority, or billable/non-billable time.

Instructions

Update an existing activity.

Args: id: Activity ID (required) subject: New subject (only if owner) body: New body (only if owner) visibility: New visibility priority_id: New priority ID billable: Billable time in seconds nonbillable: Non-billable time in seconds fields: Additional fields to return

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
bodyNo
fieldsNo
subjectNo
billableNo
visibilityNo
nonbillableNo
priority_idNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.1/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 behavioral burden. It discloses that subject and body can only be changed 'if owner', but it omits broader permission requirements, partial-update semantics, side effects, and error behavior for a mutation tool.

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 front-loaded with a one-line purpose and then an efficient Args list. Every line corresponds to a parameter or constraint, with no redundant or filler text.

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?

For a mutation tool with 8 parameters, no annotations, and no output schema, the description is incomplete. It documents parameters but does not explain return behavior, default update semantics, authorization beyond subject/body ownership, or what happens when omitted fields are passed.

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 list all 8 parameters with some added meaning: owner constraints for subject/body, units for billable/nonbillable, and the purpose of fields. However, it does not clarify formats or allowed values for visibility and priority_id.

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 states a specific verb and resource: 'Update an existing activity.' This clearly distinguishes update from create/delete/list activities, but it does not explicitly contrast with sibling update tools such as update_task or update_issue.

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 explicit guidance on when to use this tool versus alternatives like accelo_create_activity or accelo_get_activity. The phrase 'Update an existing activity' implies usage, but no conditions, exclusions, or alternatives are provided.

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