Skip to main content
Glama
fl0w1nd

teamspeak3-mcp

by fl0w1nd

channel_perm

Add, remove, or list permissions on a specific TeamSpeak 3 channel to control user access and allowed actions.

Instructions

Manage permissions on a specific channel: add, remove, or list

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
valueNoPermission value (required for add)
actionYesAction to perform
channel_idYesChannel ID
permissionNoPermission name (required for add/remove)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.3

TDQS

B3.3/5.0
Behavior2/5

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

No annotations are provided, so the description carries full behavioral burden, yet it discloses nothing beyond the action list: no permission requirements, no note on whether add/remove are reversible or auditable, and no confirmation of whether 'list' is read-only. For a mutation-capable permission tool this is a substantial gap.

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?

A single compact sentence, front-loaded with the verb and resource, with the three actions enumerated at the end. Nothing wasted.

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?

Adequate for a 4-param tool with full schema coverage and no output schema, but the absence of annotations and behavioral detail leaves an agent without safety, permission, or side-effect context it would need to invoke confidently.

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 the schema already documents each parameter including which are required for which action (value for add, permission for add/remove). The description adds no meaning beyond that baseline, so 3 is appropriate.

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 (manage permissions) and resource (a specific channel), and enumerates the three sub-operations (add, remove, list). It distinguishes itself from sibling client_perm and sgroup_perm by naming the channel scope, though it doesn't explicitly contrast with them.

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 usage via the action list but gives no explicit when-to-use, prerequisites, or alternative routing. An agent knows the three modes exist but not under what conditions one is preferred over channel_perm alternatives like perm_overview.

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