Skip to main content
Glama
dhawalshah

tiktok-ads-mcp

get_bc_members_tool

Audit TikTok Ads Business Center access by retrieving all members, their roles, and status. Identify inactive or unauthorized users before they cause security issues.

Instructions

Get all members of a Business Center, their roles, and access status. Returns user_id, username, email, role, status for each member. Useful for access audits. Use get_business_centers_tool first to get bc_id.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bc_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.4/5.0
Behavior3/5

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

No annotations are provided, so the description carries the burden of behavioral disclosure. It does disclose the return fields and the prerequisite of bc_id, which is helpful. However, it does not mention whether this is a read-only operation, whether it requires special permissions, or whether it returns paginated results. For a read-only list tool, this is adequate but not rich.

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 sentences with no filler. The first sentence states the core function, the second lists return fields, and the third gives usage guidance. Every sentence earns its place and the most important information is front-loaded.

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 simple one-parameter read tool with an output schema, the description is nearly complete. It covers what the tool does, what it returns, and how to obtain the required parameter. The only minor gap is the lack of explicit read-only/permission context, but the output schema and simple parameter make this a minor omission.

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. It explains that bc_id is the Business Center identifier and instructs the agent to get it from get_business_centers_tool first. This adds meaning beyond the bare schema property 'Bc Id' and effectively documents the only parameter.

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 states a specific verb ('Get'), a specific resource ('all members of a Business Center'), and the exact data returned (user_id, username, email, role, status). It clearly distinguishes itself from sibling tools like get_business_centers_tool and get_bc_assets_tool by focusing on members and access status.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly says to use get_business_centers_tool first to obtain bc_id, which is a clear prerequisite and usage instruction. It also states the tool is 'Useful for access audits,' giving a concrete use case. This is strong guidance for an agent deciding when to invoke this tool.

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