Skip to main content
Glama
chrischall
by chrischall

Read any Client Hub page as text

jobber_read_page
Read-onlyIdempotent

Fetches any Jobber Client Hub page and returns readable text. Use for detail pages without a pinned schema or when a list tool returns nothing.

Instructions

Fetch any page of a Jobber Client Hub and return its readable text. Use for detail pages (e.g. invoices/150208512, appointments/2236612358) whose layout has no pinned schema, and to inspect a page when a list tool returns nothing. Read-only.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
hubNoWhich provider hub to read, by label. Omit when only one is configured.
pathYesHub-relative path, e.g. "invoices" or "invoices/150208512".

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv0.4.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.0.0

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, and idempotentHint, and the description reinforces read-only without contradicting them. It adds context that the tool returns readable text and is suited for schema-less pages, which goes beyond the annotation flags.

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?

Two sentences with no filler; the core purpose is stated first and the usage guidance second. Every clause earns its place, and the example paths are concrete and illustrative.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a read-only page fetcher with one required parameter and no output schema, the description covers the purpose, when to use it, and what it returns. The absence of an output schema is compensated by the clear statement that it returns readable text, and the annotations cover safety.

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 already describes both parameters with examples and coverage at 100%, so the description adds little new semantic meaning. The description reinforces the path pattern with examples but does not go beyond the schema's own documentation.

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 clearly states the tool fetches any Client Hub page and returns its readable text, with concrete examples of detail page paths. This distinguishes it from the sibling list tools, which operate on specific entity types with pinned schemas.

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

Usage Guidelines5/5

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

It explicitly instructs to use this tool for detail pages without pinned schema and when a list tool returns nothing, providing clear decision criteria relative to the sibling list tools. No exclusions are needed because the alternatives are implicit from the sibling names.

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