Skip to main content
Glama
gray-wilbee

fub-mcp

by gray-wilbee

list_deal_custom_fields

Fetch all deal custom fields from your account, with sorting, filtering, and pagination to handle large volumes.

Instructions

List all deals custom fields available in your account. (GET /dealCustomFields) 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
sortNoSorts results based on the provided field name. Prepending the field with a minus sign (-) sorts the results in descending order.id (desc)
labelNoFind custom field by label.
limitNoNumber of results to return. Max 100.
offsetNoSpecifies the number of rows to skip, before starting to return results.
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.5/5.0
Behavior4/5

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

No annotations are provided, so the description carries the full burden. It discloses the default limit override (100 vs. 10), the presence of _metadata, and how pagination works. It does not explicitly state read-only behavior, but 'List' implies it, and the pagination details add useful behavioral insight beyond the schema.

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, all useful. The purpose is front-loaded, the endpoint is given, and pagination instructions follow. No filler or redundancy.

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?

Given no output schema and no annotations, this description covers the critical operational details: what it lists, the pagination behavior, and how to proceed when more results exist. The mention of cursor-based endpoints like notes is slightly tangential but still helps the agent handle similar tools. Nothing essential is missing for correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so baseline is 3, but the description adds value by explaining the limit default and how to use offset/cursor for pagination. It also hints at extraQuery usage with an example, which enriches the parameter meaning beyond the bare schema.

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 states a specific verb and resource ('List all deals custom fields') and includes the endpoint (GET /dealCustomFields). It clearly distinguishes this from the sibling list_custom_fields by restricting scope to deal custom fields, so an agent can tell them apart without opening schemas.

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

Usage Guidelines4/5

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

It gives clear context on when pagination is needed ('bulk requests are the common case') and explains how to paginate with offset or cursor. It does not explicitly name alternatives (e.g., get_deal_custom_field for a single field), but the scope is obvious from the name and description.

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