Skip to main content
Glama
chrischall

honeybook-mcp

by chrischall

list_tasks

Read-only

Retrieve vendor-assigned tasks and task groups for a workspace, with counts for today, this week, overdue, and completed items sorted by due date.

Instructions

Tasks the vendor has assigned to you in a workspace — the portal's Tasks tab — with the today / this week / overdue / completed counts and any task groups. Sorted by due date.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoPage number (default 1).
originNoPortal origin (e.g. https://<vendor>.hbportal.co). Optional when only one session is active.
per_pageNoPage size (default 50).
curr_dateNoYYYY-MM-DD the counts are bucketed against (default: today).
workspace_idYesThe workspace _id (from list_projects).

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv1.0.0
    • changedInput schema / $schema
      Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
  2. Addedv0.9.0

TDQS

A3.8/5.0
Behavior4/5

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

With readOnlyHint=true, the safety profile is already covered. The description adds useful behavioral detail: it returns today/this week/overdue/completed counts, any task groups, and sorts by due date. This is beyond what the annotation declares.

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 sentence captures scope, output composition, and sort order with no filler. It is front-loaded with the resource and follows with the distinguishing views.

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?

For a read-only list tool, the description conveys what is returned (tasks, counts, groups, sorting) and scopes it to a workspace. Pagination and date-bucketing are left to the schema, which fully documents them, so nothing critical is missing.

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?

The input schema covers all 5 parameters with descriptions, so the baseline is 3. The tool description mentions 'workspace' context and due-date sorting but doesn't add meaning beyond what the schema properties already state.

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

Purpose4/5

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

The description identifies the resource as vendor-assigned tasks within a workspace and references the portal's Tasks tab, making it distinct from sibling list tools. It doesn't state an explicit verb ('list'), but the resource and scope are unambiguous.

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

Usage Guidelines3/5

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

There is no explicit when-to-use guidance or mention of alternatives among siblings. The context ('the portal's Tasks tab', vendor-assigned tasks) implies when it applies, but no exclusions or cross-references are provided.

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