Skip to main content
Glama
fl0w1nd

teamspeak3-mcp

by fl0w1nd

client_db_list

List historical clients, including offline users, from the TeamSpeak 3 server database. Supports pagination for large databases.

Instructions

List historical clients from the server database (includes offline clients). Supports pagination for large databases

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax number of entries to return (max 1000)
startNoOffset to start from (for pagination)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.3

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 burden. It usefully discloses that offline clients are included and that pagination is supported, but says nothing about permissions required, ordering, whether results are cached/live, or any return shape.

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?

Two tight sentences with zero filler; the scope-defining detail (offline clients) is front-loaded before the pagination note.

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?

For a simple two-optional-parameter list tool with no output schema, the description covers the essentials but omits what a returned client record contains and any ordering or permission context an agent might need.

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 limit and start are already documented with defaults and the max-1000 cap. The description's mention of pagination adds no detail beyond the schema, so the baseline of 3 applies.

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 specific verb and resource ("List historical clients from the server database") and scopes it with "includes offline clients." This distinguishes it from point lookups like client_info, though it does not name any sibling explicitly.

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?

Usage is only implied: an agent can infer the tool is for enumerating offline/historical clients and for large datasets that need pagination. There is no explicit when-to-use statement, no condition that selects this over client_info, and no exclusions.

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