Skip to main content
Glama
timaw513

KanbanFlow MCP Server

by timaw513

get_time_entries_for_board

Retrieve all KanbanFlow time entries (manual, Pomodoro, Stopwatch) for a specific board within a date range. Use board_name and optional from/to timestamps to filter results.

Instructions

Get all time entries (manual, Pomodoro, Stopwatch) for the board within a time window.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
toNoEnd timestamp, ISO 8601 or epoch ms (from or to required)
fromNoStart timestamp, ISO 8601 or epoch ms (from or to required)
limitNoMax 1000, default 100
userIdNo
board_nameYesName of the configured board to operate on (see list_boards)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.0.0

TDQS

B3.2/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It discloses read access and entry types but omits permissions, pagination behavior, the limit default, authentication needs, and response shape.

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?

A single front-loaded sentence with no waste. It states the resource, subtypes, and scope efficiently.

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?

With 5 parameters, no annotations, and no output schema, the one-sentence description is incomplete. It does not cover when to use the tool, the nuance that from or to is required, the limit default, or the structure of returned time entries.

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 description coverage is 80%, so the baseline is 3 even without parameter detail in the description. The description repeats the board and time-window scoping already in the schema and adds no meaning for userId or limit beyond what the schema provides.

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?

States a specific verb 'Get' and resource 'time entries' scoped to the board and a time window. It also enumerates entry subtypes (manual, Pomodoro, Stopwatch), which clearly distinguishes it from the task-level sibling get_time_entries_for_task by resource.

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, when-not, or alternative tool guidance is provided. The sibling get_time_entries_for_task exists but is not mentioned, and the description offers only implied usage from the tool name.

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