Skip to main content
Glama
gray-wilbee

fub-mcp

by gray-wilbee

list_webhooks

List webhooks from Follow Up Boss, filtering by event or status, and paginate to get up to 100 results per request.

Instructions

Get a list of webhooks. (GET /webhooks) Defaults to limit=100 (FUB's max per page) rather than its own default of 10 — bulk requests are the common case here. If the response's _metadata shows more results remain, keep paginating: use offset for offset-based endpoints, or the _metadata.next cursor value (as the next argument) for cursor-based endpoints like notes.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sortNoThe sort order. Can be one of the following: `id`, `created`, `updated`, `status` or `event`.created
eventNoSearch for webhooks by event. (e.g., `peopleCreated` or `peopleUpdated`)
limitNoNumber of results to return. Max 100.
offsetNoSpecifies the number of rows to skip before starting to return results.
statusNoSearch for webhooks by status. Status can be `Active` or `Disabled`.
extraQueryNoExtra raw query parameters not explicitly listed above — e.g. FUB custom field filters like custom.ClosingDate on /people or /deals. Keys and values are sent as-is.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations, the description carries the full burden. It discloses the default limit override and pagination requirements, which are critical behavioral traits. It does not explicitly state read-only, but that is inferable from 'get a list'. No contradictions.

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?

Three sentences with no redundancy; the main purpose is stated first, followed by practical usage details. The structure is efficient and front-loaded with the most important information.

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 list endpoint without an output schema, the description explains pagination and the default limit—the main non-obvious aspects. It could mention the response format, but that is often standard. It is sufficient for an agent to call the tool correctly.

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 schema fully documents all six parameters, so the description adds limited extra value. It does explain the rationale for the limit default, but that is already present in the schema. The pagination guidance is contextual rather than parameter-specific.

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 retrieves a list of webhooks and includes the HTTP endpoint. It is distinct from get_webhook (singular) and preemptively explains the default limit, making its purpose unambiguous.

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?

Provides explicit guidance for bulk retrieval and explains pagination using offset or _metadata.next cursor. It implies when to use this tool versus get_webhook for single records, offering actionable selection criteria.

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

Deploy Server

Other Tools