Skip to main content
Glama

Import Poker Tasks Tool

poker.game.tasks.import

Pulls tasks from a connected issue tracker into a poker game. Give it either iteration_ref from poker.iterations.list to take a whole sprint, or query to search by text and issue key. Tasks already in the game are skipped. Only the team owner can change a game. Requires mcp:write scope.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoHow many tasks to pull at most. Default: 50, maximum: 100.
queryNoText or issue key to search for, when importing without an iteration.
sourceNoTracker to import from, for example jira. Required only when the team has several trackers connected.
game_idYesThe ID of the poker game to import into.
iteration_refNoThe ref of an iteration from poker.iterations.list — imports every task of that sprint.

TDQS

A4.6/5.0
Behavior5/5

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

With empty annotations, the description discloses key behavioral traits: skipping existing tasks ('Tasks already in the game are skipped'), authorization requirements ('Only the team owner can change a game'), and security scope ('Requires mcp:write scope'). It does not contradict annotations.

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?

Four sentences, front-loaded with the primary purpose, followed by usage modes, behavior, and permissions. Every sentence adds value without redundancy.

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?

Covers purpose, usage modes, permission prerequisites, and idempotency behavior. It could mention what happens when both iteration_ref and query are provided or error handling, but overall it is a strong description for a moderately complex tool.

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?

Though schema coverage is 100%, the description adds the mutual exclusivity relationship between iteration_ref and query, and links iteration_ref to poker.iterations.list, providing extra semantic context beyond the schema.

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 states a specific verb ('Pulls') and resource ('tasks from a connected issue tracker into a poker game'), clearly distinguishing from sibling tools like poker.game.tasks.add by emphasizing the external tracker source.

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?

It indicates when to use it (to import a whole sprint via iteration_ref or search by query) but does not explicitly name alternatives or exclusion rules. The instruction 'Give it either iteration_ref ... or query' provides clear context for invocation.

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

A3.8/5.0
Disambiguation5/5

Each tool targets a distinct resource and action, with overlapping tools like retro.actions.list and retro.board.actions.list explicitly differentiated in descriptions. The naming hierarchy (domain.resource.subresource.verb) helps keep properties separate.

Naming Consistency5/5

Tools follow a consistent dot-separated resource-verb pattern, with singular/plural usage following standard collection vs. single-resource conventions (e.g., games.list vs. game.get). All verbs are lowercase with underscores, making the surface predictable.

Tool Count2/5

With 29 tools spanning two distinct domains (poker planning and retrospectives), the surface feels heavy and may overwhelm users. The calibration suggests 25+ is excessive, and splitting into separate servers could improve focus.

Completeness3/5

The tool set covers most management tasks for both poker games and retrospectives, but lacks a core operation for adding messages/cards to a board, which is essential for a retro tool. Also, no board creation or deletion tools, leaving some lifecycle operations incomplete.

Resources