Skip to main content
Glama
Decian-Inc

curricula-mcp

by Decian-Inc

list_account_assignments

Retrieve assignments for a specific account using its ID, with options for filtering, pagination, and sorting via query parameters.

Instructions

List assignments for an account. Calls GET /accounts/{accountId}/assignments. Put route IDs in path_params and filtering, pagination, sorting, or include values in query.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyNo
queryNo
path_paramsNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/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 behavioral disclosure burden. It reveals the HTTP method (GET) and the readable/read-only nature of listing assignments, which are helpful. However, it does not mention authentication, rate limits, potential absence of data, or behavior when required path parameters are missing, so the transparency is only partial.

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 three short sentences, purpose-leading, and efficient. It includes the endpoint and the essential placement instruction without excessive detail. The phrase 'or include values in query' is slightly vague but does not add bloat.

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?

With an output schema present, return values are covered. Still, the description fails to specify that an account ID is effectively required in path_params for the call to succeed, and it offers no cross-reference to alternative tools. It is adequate for a straightforward GET list but incomplete for an agent to handle all necessary scenarios.

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?

Since the input schema is entirely generic (all additionalProperties, 0% coverage), the description compensates by explaining that route IDs belong in path_params and filtering/pagination/sorting belong in query. It omits the body parameter's role, but it provides enough meaning to make sense of the generic object containers.

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 clearly states the verb 'List' and the resource 'assignments' with an account scope, and further specifies the GET endpoint. It distinguishes the resource (account assignments) from other siblings, though it does not explicitly name list_assignments as the general alternative.

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 phrase 'for an account' implies this is for account-scoped assignments, which loosely suggests when to use it, but there is no explicit when-not or alternative tool reference. The bulk of the instruction is about parameter placement (path_params vs query), not when to choose this over siblings.

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