Skip to main content
Glama

accelo_list_time_externals

List imported calendar appointments from Accelo to review, search, and filter time externals before converting them into activities for scheduling and timesheets.

Instructions

List time externals (imported calendar appointments) from Accelo.

Time externals are appointments imported from Google, Exchange, or Outlook calendars. They can be converted to activities for scheduling and timesheets.

Args: filters: Filter dict. Keys: id, staff_id, order_by_asc/desc (id, staff_id, date_created, date_modified, date_started, date_ended) fields: Additional fields, e.g. "description,date_started,date_ended" search: Search over title, description page: Page number (0-indexed) limit: Results per page (max 100)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo
limitNo
fieldsNo
searchNo
filtersNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/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 the domain concept and one concrete constraint (limit max 100), and 'List' implies a read-only operation, but it says nothing about auth requirements, default sort order, or what a returned record contains. Adequate but thin for an unannotated tool.

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?

Front-loads the one-line purpose, then a short clarifying paragraph, then a compact Args block. No filler sentences; the only redundancy is mild re-explanation of the domain concept.

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 list tool with no output schema, no annotations, and 0% schema coverage, the definition covers parameters well but omits the return shape (default returned fields), pagination guidance beyond the max limit, and any ordering default. An agent can call it correctly but cannot anticipate what comes back.

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 largely does: it enumerates the filters keys (id, staff_id, order_by_asc/desc with sortable fields), gives a fields example, defines search scope (title, description), and notes page is 0-indexed and limit caps at 100. Minor gaps remain, such as the default values for page and limit and what 'fields' actually adds to the response.

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?

States a specific verb (List) and resource (time externals), then defines the resource conceptually as imported calendar appointments from Google/Exchange/Outlook that can be converted to activities. That conceptual definition distinguishes it from generic siblings like accelo_list_activities without the agent needing to open a schema.

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 note that externals 'can be converted to activities for scheduling and timesheets' implies a workflow context, but there is no explicit when-to-use statement and no routing versus accelo_list_activities, accelo_get_time_external, or accelo_count_time_externals. Usage is only inferable.

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