Skip to main content
Glama

notion_sprint_plan

Destructive

Turn your sprint objective into a structured Notion sprint plan. Provide a message describing the goal, with optional JSON inputs, and the domain agent handles planning automatically.

Instructions

Run the notion domain agent action sprint_plan.

Routes through the platform's domain-agent dispatcher under your JWT, tenant, and company scope.

Args: message: Free-text objective for the action. inputs: Optional JSON string of structured inputs for the action.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
inputsNo{}
messageNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.8/5.0
Behavior3/5

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

The annotations already carry destructiveHint=true, readOnlyHint=false, idempotentHint=false, so the safety profile is covered. The description adds useful context that the call is routed through the domain-agent dispatcher under JWT/tenant/company scope, but it does not describe what side effects occur beyond what annotations already state.

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 short, front-loaded with the action name, and the Args section is compact. No filler sentences are present, though the opening sentence largely restates the tool name.

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

Completeness2/5

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

For a tool in a very large sibling set, the description lacks enough context to choose and invoke it confidently: no domain behavior, no examples, and no guidance on what a valid sprint-planning objective looks like. The output schema may cover return values, but the description still omits key selection and invocation context.

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?

With 0% schema description coverage, the Args block provides the main semantics: `message` is a free-text objective and `inputs` is an optional JSON string. This is helpful but still generic; it does not explain what structured fields `inputs` should contain or provide examples.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states that the tool runs the `sprint_plan` domain-agent action and routes through the platform dispatcher, giving a specific verb and resource. However, it never explains what sprint planning actually does or how this differs from the many other notion_* and domain-agent tools, leaving the purpose vague.

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

Usage Guidelines2/5

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

No when-to-use or when-not-to-use guidance is provided; there are no references to alternative tools such as notion_triage_backlog or notion_weekly_status_report. The description only explains routing mechanics, not the situations in which an agent should select this tool.

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

Deploy Server

Other Tools