Skip to main content
Glama

List users

fireworks_list_users
Read-only

List account members (users). Control-plane: GET /v1/accounts/{account_id}/users.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageSizeNoPage size (max 200).
pageTokenNoOpaque page token from a previous response's nextPageToken.
account_idNoFireworks account id. Overrides FIREWORKS_ACCOUNT_ID for this call.

Schema Changelog

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

  1. First observed

TDQS

A3.8/5.0
Behavior4/5

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

The annotation indicates readOnlyHint: true, and the description adds the HTTP method and path, confirming a read-only operation. It does not contradict annotations and provides additional context beyond them.

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 extremely concise with two sentences, the first stating the purpose and the second providing the API endpoint. No extraneous information is present.

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?

The description does not mention the return format (e.g., list of user objects, pagination behavior) despite the schema including pagination parameters. For a list tool, this omission reduces completeness.

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 coverage is 100%, so parameters are well-documented in the schema. The description implicitly links account_id to the URL path, adding some semantic context beyond the schema, justifying above baseline.

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 tool lists account members (users) and provides the specific HTTP method and path, effectively distinguishing it from sibling list tools like fireworks_list_datasets and fireworks_list_models.

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?

No guidance is provided on when to use this tool versus alternatives, such as when to list users instead of deployments or datasets. The description does not include any when-to-use or when-not-to-use indicators.

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

A3.7/5.0
Disambiguation5/5

Each tool has a distinct resource and action combination (e.g., create_dataset vs delete_deployment vs list_models), with no overlapping purposes. Descriptions clearly differentiate each tool.

Naming Consistency5/5

All tools follow a consistent 'fireworks_verb_noun' pattern, with verbs like create, delete, get, list and singular or plural nouns as appropriate. No mixing of conventions.

Tool Count5/5

14 tools cover the main resources of the Fireworks platform (accounts, datasets, deployments, fine-tuning jobs, models, batch inference, users). The scope is appropriate and not overwhelming.

Completeness2/5

The tool set is heavily read-oriented with only one creation tool (create_dataset) and one deletion tool (delete_deployment). Missing create for deployments, fine-tuning jobs, models; missing update and delete for most resources. Gaps would hinder full workflow automation.