Skip to main content
Glama

Set Thread Visibility

set-thread-visibility
Idempotent

Set a thread as public or private. Public threads can be shared via URL. Use session_id from a previous debate session.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
is_publicYesSet to true to make the thread publicly accessible, false to make it private
session_idYesThe session ID from a previous debate

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
isPublicYesCurrent visibility state
publicUrlYesPublic share URL if thread is public

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.1/5.0
Behavior3/5

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

Annotations already convey that the operation is not read-only, not destructive, and idempotent. The description adds useful context about public threads being shareable via URL, which is a behavioral consequence. However, it doesn't detail other effects like reversal or immediate propagation, but given the annotations, the baseline bar is met.

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 two sentences, front-loaded with the primary action, and contains no fluff. Every sentence serves a purpose: stating the action and clarifying a prerequisite.

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?

For a simple two-parameter setter with full schema coverage and an output schema, the description is complete. It provides the core behavior, the prerequisite, and a practical implication (URL sharing), without requiring excessive detail.

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?

The schema already covers both parameters with descriptions, so baseline is 3. The description adds meaning by linking is_public to the public/private states and clarifying that session_id comes from a previous debate session, which reinforces and enriches the schema's descriptions.

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 clearly states the tool's action: 'Set a thread as public or private.' It identifies the specific resource (thread visibility) and the two possible states, and adds the contextual note that public threads can be shared via URL. This clearly distinguishes it from sibling tools like get-thread-link.

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 when you need to change a thread's visibility, and it specifies that session_id must come from a previous debate session. However, it does not explicitly mention alternatives or when not to use this tool, such as referencing get-thread-link for retrieving the link.

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

A4/5.0
Disambiguation4/5

The tool set separates general consultation (consult-council) from specialized councils for tradeoffs, debugging, architecture, implementation planning, and code review. Session management and utility tools (logs, usage, models, sessions) are clearly distinct. Only minor potential overlap exists between consult-council and the specialized councils, but descriptions clarify the purpose of each.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern in snake_case (e.g., consult-council, get-session, list-models). Verbs are varied but predictable, and compound nouns are hyphenated consistently. No mixed conventions.

Tool Count5/5

13 tools is appropriate for a platform that offers multiple council workflows plus session, log, and usage management. Each tool addresses a distinct need without unnecessary bloat.

Completeness5/5

The server covers the full lifecycle of a council-based workflow: model discovery (list-models), execution (consult-council and specialized councils), session retrieval (list-sessions, get-session), sharing (get-thread-link, set-thread-visibility), and operational support (check-usage, get-logs). Missing delete/update session tools are minor and not essential for the core purpose.

Resources