Skip to main content
Glama

List operators

list_operators
Read-only

List all operators (chat agents) on the Olark account. Olark API: GET /operators. Returns operators (each with id, email, nickname, available). Only operators under the authenticated account are returned (sub-accounts are not).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoOlark pagination page number, 1-based (offset-based paging; ~100 records/page).
paramsNoAdditional documented query-string filters to send verbatim (merged with the typed params above).

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, and the description adds context beyond that: the GET endpoint, the returned operator fields (id, email, nickname, available), and the account-scoping caveat of excluding sub-accounts. This gives an agent a clear picture of what the operation returns and its boundaries.

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?

Three compact sentences, each carrying distinct value: what is listed, the API endpoint, the return shape, and scope limitations. No filler or redundant restating of the tool name.

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

Completeness4/5

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

For a read-only list tool with readOnlyHint and a detailed schema, the description covers return fields and account scope. The absence of an output schema is mitigated by naming the returned attributes. Minor gaps like error behavior are not critical for this simple list operation.

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

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so both page and params are already well-documented in the schema. The description does not add parameter-level meaning, but it doesn't need to; baseline 3 applies.

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 action ('List all operators') and the resource scope ('on the Olark account'), and clarifies the concept ('chat agents'). It also distinguishes itself from the single-operator sibling get_operator by emphasizing the collection-level listing.

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 this is the tool for listing the full operator collection, and the scope limitation (no sub-accounts) gives some context. However, it never explicitly says when to prefer this over alternatives like get_operator, so usage guidance is mostly implied rather than explicit.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.1/5.0
Disambiguation4/5

Each dedicated tool targets a distinct operator or group operation, so the core set is easy to separate. The only ambiguity is olark_request, a generic GET escape hatch that can overlap with list_operators/list_groups, but its purpose is clearly labeled as a power-user fallback.

Naming Consistency4/5

Most tools follow a clear verb_object snake_case pattern such as create_operator, list_operators, add_operator_to_group, and remove_operator_from_group. olark_request breaks the pattern slightly by being noun-style rather than verb-first, but the rest of the naming is consistent.

Tool Count5/5

Eight tools is a well-scoped count for an Olark operator and group management server. Each tool covers a distinct operation without redundant duplicates or excessive granularity.

Completeness3/5

Operator coverage includes create, get, list, and update, but there is no delete_operator, which is a notable lifecycle gap. Group management is also incomplete since it only lists groups and manages membership, with no way to create, update, or delete groups.