Skip to main content
Glama
NicoLa5Tor

@nicola5tor/openproject-timelog

by NicoLa5Tor

Asignar work package a entries

assign_entry

Assign pending time entries to a specific OpenProject work package by providing their IDs and the work package ID, ensuring accurate project allocation.

Instructions

Asigna un workPackageId a una o varias entries pendientes (por sus ids).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
entryIdsYes
workPackageIdYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.1

TDQS

B3.4/5.0
Behavior2/5

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

With no annotations, the description carries the full burden. It discloses one behavioral constraint (entries must be pending) but omits other important aspects such as whether the operation is reversible, any required permissions, validation behavior, or error handling. For a mutation tool, this is insufficient transparency beyond a single condition.

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 a single, clear sentence with no redundant words or fluff. It is appropriately concise for the tool's simplicity, front-loading the core action and object.

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 simple 2-parameter tool with no output schema, the description conveys the essential action and a key condition (pending entries). However, it lacks details about what happens upon assignment (e.g., return value, side effects, or validation rules) which could be important for correct usage. It is adequate but leaves gaps.

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?

Schema description coverage is 0%, so the description must compensate. It only implies that entryIds are the entry identifiers ('por sus ids') and mentions workPackageId by name, but does not explain the domain or constraints beyond what the schema already provides. It adds minimal semantic value.

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 action ('Asigna' - assigns) and the resource (entries), specifying that it assigns a workPackageId to one or more pending entries based on their IDs. This is a specific verb+resource pair that distinguishes it from sibling tools like edit_entry which would cover a broader set of field changes.

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

Usage Guidelines3/5

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

The description implies usage for pending entries ('entries pendientes') but does not explicitly state when to use this tool versus alternatives, nor does it provide exclusions (e.g., when not to use it). It gives some context but lacks explicit guidance on alternatives or conditions.

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