Skip to main content
Glama
elevanaltd

debate-hall-mcp

by elevanaltd

convene

Assemble a committee of AI agents to deliberate a topic and produce a structured decision. Choose from go/no-go, vote, or review modes, with a chair managing the discussion.

Instructions

Assemble committee for group decision. members respond, chair manages order.

Creates a mediated committee session where multiple agents deliberate. Supports go_nogo (GO/NO-GO extraction), vote, and review decision types.

Args: topic: What the committee is deciding members: Committee member roles (e.g. ["CRS", "CE"]) brief: The brief/description for the committee chair_role: Who chairs the committee (default: "Chair") decision_type: "go_nogo" | "vote" | "review" (default: "review") thread_id: Custom thread ID (auto-generated if omitted) context: Additional context for the committee max_turns: Committee turn limit (default: 12)

Returns: Dictionary with thread_id, status, session_type, decision_type, chair_role, members, awaiting, turn_count

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
briefYes
topicYes
contextNo
membersYes
max_turnsNo
thread_idNo
chair_roleNoChair
decision_typeNoreview

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.5.0

TDQS

A4/5.0
Behavior4/5

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

With no annotations, the description carries the burden. It explains that the tool creates a mediated session, that members respond and the chair manages order, and it lists the supported decision types. It also returns a status indicating the session is 'awaiting' input. This is good behavioral context, though it could mention potential side effects (e.g., asynchronous nature or state changes) but which are implied by 'session' and 'awaiting'.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with an opening summary, followed by a concise list of arguments and returns. It is appropriately sized for an 8-parameter tool. It front-loads the core action and decision types. A slight deduction for redundancy: the first two sentences overlap somewhat ('Assemble committee' vs 'Creates a mediated committee session').

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?

Given the tool's complexity (8 params, 3 required, no annotations) and the presence of an output schema, the description covers the essentials: purpose, decision types, parameters, and return fields. It lacks explicit examples of usage or edge cases, but the output schema handles return structure. The description is sufficient for an agent to call the tool correctly, though it could be more explicit about when to choose this over debate tools.

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 description coverage is 0%, so the description must compensate. It provides a clear list of all 8 parameters with brief explanations in the Args block, including defaults and examples for members. It adds meaning beyond the schema (e.g., what 'members' are, what 'decision_type' options are). It covers most parameters adequately, but some (like context) are only glossed over.

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?

The description clearly states that the tool assembles a committee for group decision-making, with a specific verb ('assemble') and resource ('committee'). It also lists supported decision types, which helps distinguish it from siblings like init_debate that likely start a different deliberation format. However, it does not explicitly compare with siblings, so it misses the differentiation point for a 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage when a committee-style decision is needed, and the mention of decision types (go_nogo, vote, review) gives context. However, it does not explicitly state when not to use this tool or mention alternative siblings like init_debate or consult. The absence of exclusions drops it from a 5.

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