Skip to main content
Glama
TAgents

Planning System MCP Server

by TAgents

queue_decision

Queue a decision for human review by providing options, recommendation, and urgency. Define context, smallest input needed, and proposed subtasks to materialize upon approval. Replaces automated decision patterns.

Instructions

Queue a decision for human review. Writes to the real decisions table (not the knowledge graph). Replaces the autopilot pattern of calling add_learning with entry_type=decision and a 'DECISION NEEDED:' title prefix. Resolves via resolve_decision.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
plan_idNoPlan that owns this decision. Required if node_id is not provided.
node_idNoTask that prompted the decision. If provided, plan_id is inferred.
titleYesUser-facing decision title
contextYesBackground — why this matters, what is at stake
optionsNoConcrete options to choose between
recommendationNoAgent's preferred option with one-line reasoning
smallest_input_neededYesExplicit ask for human, e.g. 'approve|defer'
urgencyNonormal
goal_idNoOptional goal this decision serves
proposed_subtasksNoTasks to materialize if the human approves. Agents propose; humans steer structure. On resolve_decision(action='approve'), these are atomically created under the given parent_id and their IDs are returned.
Behavior3/5

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

With no annotations, the description carries full burden. It discloses that writes go to the real decisions table (not knowledge graph) and that resolution is via resolve_decision. But it omits details on side effects, authorization needs, rate limits, or whether queuing is reversible.

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?

Three sentences, no filler, front-loaded with the core purpose. Each sentence adds essential information: purpose, distinction from previous pattern, and resolution pathway.

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

Completeness3/5

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

Considering the tool has 10 parameters and no output schema, the description does not cover return behavior, confirmation, or error conditions. The proposed_subtasks parameter is complex but not explained in the description. However, the description does mention the key resolution mechanism.

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?

Schema coverage is 90%, so the input schema already provides adequate descriptions for most parameters. The tool description adds no additional parameter-level meaning beyond what is in the schema, achieving baseline 3.

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?

Description clearly states the tool queues a decision for human review, distinguishes itself by writing to the real decisions table instead of the knowledge graph, and explicitly replaces the autopilot pattern using add_learning with a specific title prefix. It also mentions resolution via resolve_decision, providing a complete purpose.

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?

Description provides explicit guidance by contrasting with add_learning pattern and noting resolution via resolve_decision. However, it lacks explicit 'when to use vs. when not to use' statements and does not mention alternatives among sibling tools beyond add_learning.

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/TAgents/agent-planner-mcp'

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