Skip to main content
Glama
megamaced

collectives-mcp

by megamaced

set_user_settings

Idempotent

Update your display preferences for a collective, including page sort order and widget visibility.

Instructions

Update the authenticated user's own display preferences for one Collective: page sort order, and whether the members and recent-pages widgets on the landing page are expanded. These are per-user and do not affect other members — use set_page_mode for the Collective-wide setting. Provide at least one field; omitted fields are left unchanged.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageOrderNoPage sort order. "byOrder" honours the manual order set by set_subpage_order.
showMembersNoExpand the members widget on the landing page.
collectiveIdYes
showRecentPagesNoExpand the recent-pages widget on the landing page.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.4.1

TDQS

A4.7/5.0
Behavior4/5

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

Annotations already indicate readOnlyHint=false, idempotentHint=true, and destructiveHint=false. The description adds useful behavioral context: changes are scoped to the authenticated user, do not affect other members, and omitted fields are preserved.

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?

The description is concise and front-loaded, with three focused sentences. No redundant wording or unnecessary technical detail.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the simple parameter set and no output schema, the description provides enough context to call the tool correctly, including the update semantics and the relationship to the sibling set_page_mode tool.

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 descriptions cover 75% of parameters, including booleans and the pageOrder enum. The required collectiveId lacks a direct schema description, but the tool description clarifies the target is 'one Collective', partially compensating for that gap.

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?

States a specific verb ('Update') and a clear object ('authenticated user's own display preferences for one Collective'), and enumerates the exact fields. It also distinguishes this tool from set_page_mode by noting the collective-wide alternative.

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?

Explicitly explains when to use it (per-user display preferences) and when not to (use set_page_mode for Collective-wide settings). It also tells callers to provide at least one field and that omitted fields are left unchanged.

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