Skip to main content
Glama
chernistry

Bernstein - Multi-agent orchestration

bernstein_create_subtask

Decompose parent tasks into specialized subtasks for multi-agent orchestration, automatically transitioning parent tasks to waiting status during workflow execution.

Instructions

Create a subtask linked to a parent task.

    Agents call this to decompose their current work into subtasks
    during execution.  The parent task is automatically transitioned
    to WAITING_FOR_SUBTASKS status.

    Args:
        parent_task_id: ID of the parent task that this subtask belongs to.
        goal: Description of what the subtask should accomplish.
        role: Specialist role to assign (backend, frontend, qa, …).
        priority: 1=critical, 2=normal, 3=nice-to-have.
        scope: Task scope — small, medium, or large.
        complexity: Task complexity — low, medium, or high.
        estimated_minutes: Rough time estimate in minutes.

    Returns:
        JSON with the created subtask ID, parent_task_id, title, and status.
    

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
parent_task_idYes
goalYes
roleNoauto
priorityNo
scopeNomedium
complexityNomedium
estimated_minutesNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes
Behavior4/5

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

With no annotations provided, the description carries full burden and does well by disclosing key behavioral traits: it creates a new subtask, automatically transitions the parent task to WAITING_FOR_SUBTASKS status, and returns specific JSON fields. It doesn't mention error conditions, permissions, or rate limits, but covers the core mutation behavior adequately.

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 clear sections (purpose, usage context, parameters, returns) and every sentence adds value. It could be slightly more concise by integrating the usage context into the opening statement, but overall it's efficiently organized.

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 mutation tool with no annotations, 7 parameters, and 0% schema coverage, the description is remarkably complete. It covers purpose, usage context, detailed parameter semantics, and return values. The presence of an output schema means the description doesn't need to detail return structure, which it appropriately references without over-explaining.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema description coverage, the description fully compensates by providing detailed semantics for all 7 parameters. It explains what each parameter means (e.g., 'priority: 1=critical, 2=normal, 3=nice-to-have'), including enum-like values for scope and complexity, and clarifies that estimated_minutes can be null.

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 specific action ('Create a subtask linked to a parent task') and distinguishes it from siblings by specifying it's for decomposing work during execution. It explicitly mentions the parent task status transition to WAITING_FOR_SUBTASKS, which is unique to this tool.

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?

The description provides explicit guidance on when to use this tool ('Agents call this to decompose their current work into subtasks during execution'). It also implicitly distinguishes from siblings by focusing on subtask creation rather than approval, cost checking, or task listing operations available in other tools.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/chernistry/bernstein'

If you have feedback or need assistance with the MCP directory API, please join our Discord server