Skip to main content
Glama
chrischall

honeybook-mcp

by chrischall

list_workspace_files

Read-only

Retrieve all vendor-shared files from your HoneyBook portal—contracts, invoices, brochures, proposals—and filter by type to locate specific documents.

Instructions

List all files a vendor has shared with you (contracts, invoices, brochures, proposals). Optionally filter by file_type.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
originNoPortal origin (e.g. https://<vendor>.hbportal.co) to target. Optional — defaults to the most recently activated session.
file_typeNoFilter to one file type. Omit to return all.

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. First observedv0.3.1

TDQS

B3.4/5.0
Behavior3/5

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

readOnlyHint=true already conveys that this is a safe read operation; the description adds useful scoping context ('vendor has shared', file type categories) but does not disclose pagination, sorting, or the shape of the returned file list. Since there is no output schema, those details are not available elsewhere.

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?

One sentence with no filler; the parenthetical examples (contracts, invoices, brochures, proposals) quickly communicate the tool's domain. The main purpose is front-loaded and every element earns its place.

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 with two optional parameters, zero required parameters, and a fully documented schema, the description is sufficiently complete for an agent to invoke it correctly. It could be stronger by noting how it differs from get_workspace_file, but that is a minor gap for such a simple operation.

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 both origin and file_type are already documented structurally. The description only paraphrases the file_type filter ('Optionally filter by file_type') without adding new meaning beyond the schema.

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 states a specific verb and resource ('List all files a vendor has shared with you') and gives concrete file type examples arena. It reads as a clear list-all operation, but it does not explicitly distinguish itself from the sibling get_workspace_file or clarify when that singular tool should be used instead.

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?

The description gives no guidance about when to choose this tool over alternatives like get_workspace_file or list_attachments. The 'Optionally filter by file_type' clause is parameter usage rather than usage selection guidance, leaving the agent to infer when this tool is appropriate.

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