Skip to main content
Glama

list_organization_members

Retrieve a paginated list of members for a specified Eventbrite organization using its organization ID. Requires a personal OAuth token for authentication.

Instructions

List Members of an Organization.

ENDPOINT: GET /organizations/{organization_id}/members/

Returns paginated response.

AUTHENTICATION: Requires: Authorization: Bearer PERSONAL_OAUTH_TOKEN

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
organization_idYesOrganization ID (required)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.6

TDQS

B3.2/5.0
Behavior3/5

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

With no annotations, the description must carry the behavioral load. It does supply useful context: the GET endpoint implies a read-only operation, it states the response is paginated, and it specifies the Bearer token auth requirement. It omits rate limits, failure modes, and the shape of each member record, so it is helpful but incomplete.

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 purpose, then layers endpoint, pagination, and auth in labeled blocks. Every line carries information, though the header-style formatting is slightly heavier than a single plain sentence would be. No filler.

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 one-parameter list tool with no output schema, the description covers what an agent needs to invoke it: endpoint, pagination behavior, and auth. It could say more about the returned member fields, but nothing essential to calling it correctly is missing.

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 coverage is 100% for the single required organization_id, so the schema already documents the parameter fully. The description only repeats organization_id inside the endpoint template, adding no new meaning. Baseline 3 is appropriate when the schema does the lifting.

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?

States a clear verb+resource ('List Members of an Organization'), which an agent can immediately map to a read of organization membership. It does not, however, distinguish itself from related siblings such as list_organization_roles or list_organizations, so the boundary relies on the natural reading of the name.

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 on when to use this tool versus the many sibling list tools (list_organizations, list_organization_roles), and no prerequisites beyond the auth note. The agent is told what it does but not when it is the right choice.

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