Skip to main content
Glama

Set guild member role

set_guild_member_role
Idempotent

Change a guild member's role to Owner, Admin, or Member. Owner/Admin only. Note that promoting another user to Owner transfers the guild — confirm with the user first.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
roleYesNew role.
userIdYesMember to change.
guildIdYesGuild ID.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
roleYes
userIdYes
guildIdYes
successYes

TDQS

A4/5.0
Behavior4/5

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

Annotations already indicate a non-read-only, idempotent, non-destructive operation. The description goes beyond annotations by warning that promoting a user to Owner transfers the guild and advising confirmation with the user. This is valuable side-effect disclosure that isn't captured in the structured fields, though it could further mention consequences of demoting an owner.

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 sentences, no filler. The first sentence states the action and allowed values; the second provides a critical caveat. Every word earns its place, and the most important operational detail (ownership transfer) 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?

With an output schema present, the description doesn't need to explain return values. It covers the main behavioral nuance (ownership transfer) and permission requirement, making it complete for a simple role-setting tool. Missing minor details like whether changing a role from Owner to Member is allowed or revokes ownership, but those are inferable from the context.

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?

The input schema covers all three parameters with descriptions, including the role enum. The description adds minor context about role semantics (e.g., Owner, Admin, Member) and the ownership transfer side effect, but doesn't need to explain parameters further since the schema already provides 100% coverage.

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 uses a specific verb ('Change') with a clear resource ('a guild member's role') and enumerates the possible values ('Owner, Admin, or Member'). This distinguishes it from sibling tools like remove_guild_member or invite_guild_member, so the agent knows exactly what operation this performs.

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 context (when changing a member's role) and notes a prerequisite ('Owner/Admin only') but does not explicitly state when to use this vs alternatives or provide exclusion criteria. It's clear enough for obvious use cases, but lacks explicit guidance about hierarchy or edge cases like demoting an owner.

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.6/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose. The mnemon tools are separated by type (NPC, Location, Quest, etc.), and other domains like guild, forum, and friend management are also well-segmented. No two tools appear to do the same thing.

Naming Consistency4/5

Most tools follow a consistent verb_noun pattern with snake_case. Some minor deviations: 'describe_mnemon_types' instead of 'list_mnemon_types', and 'invite_user_by_email' has a slightly different structure. Overall quite consistent.

Tool Count3/5

With 63 tools, the server is quite heavy. While each tool serves a specific purpose for campaign management, the sheer number may be overwhelming. It is borderline but still reasonable given the broad domain coverage.

Completeness4/5

The tool set covers CRUD for most resources (campaigns, sessions, mnemon types, guilds, friends, forum). Notable gaps: no delete_campaign or delete_session, and update_campaign is limited. However, the core workflows are well-covered.