Skip to main content
Glama
chrischall

honeybook-mcp

by chrischall

list_notes

Read-only

Retrieve vendor-shared notes from a workspace, including meeting notes and AI recaps, to review the portal's Notes tab content in one call.

Instructions

Notes the vendor has shared with you in a workspace (meeting notes, AI recaps) — the portal's Notes tab.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
originNoPortal origin (e.g. https://<vendor>.hbportal.co). Optional when only one session is active.
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

B3.4/5.0
Behavior3/5

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

The readOnlyHint annotation already establishes the safe read-only nature. The description adds useful context by indicating only vendor-shared notes in a workspace are returned and giving examples like meeting notes and AI recaps. It does not disclose ordering, pagination, or edge cases, but the annotation lowers the burden.

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?

The description is a single, front-loaded sentence with no wasted words. It states the resource, scope, content examples, and portal mapping without repeating schema details or annotations.

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 simple read-only list tool with full parameter descriptions and a readOnlyHint, the description is mostly complete: it explains what kind of notes are returned and where they appear. It could mention return shape or more explicit list behavior, but the low complexity and supported schema make this a minor gap.

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 100%, so the schema already documents workspace_id and origin. The description's mention of 'in a workspace' loosely aligns with workspace_id, but it does not add parameter-level meaning beyond the schema. Baseline 3 is appropriate.

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 and scope: notes the vendor has shared with you in a workspace, pointing to the portal's Notes tab. It is not a tautology and distinguishes the tool from siblings like list_messages or list_attachments by content type, though it lacks an explicit verb such as 'lists' or 'retrieves.'

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?

There is no guidance on when to use this tool versus alternatives such as list_messages, list_meetings, or list_attachments. It implies the intended context through 'in a workspace' and 'Notes tab,' but never states exclusions or conditions that would help an agent choose it over similar list tools.

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