Skip to main content
Glama
gray-wilbee

fub-mcp

by gray-wilbee

create_deal_custom_field

Add a custom field to deals by defining its label, type, and optional dropdown choices, enabling deal records to capture the specific data your workflow requires.

Instructions

Create a deals custom field. (POST /dealCustomFields)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
typeYesThe type of deals custom field.
labelYesThe user-friendly name of the custom field (e.g., "Anniversary").
choicesNoArray of options related to a deals custom field of type `Dropdown`.
readOnlyNoDetermines whether a deals custom field is read only.
extraBodyNoExtra raw JSON body fields not explicitly listed above — e.g. custom.* fields when creating/updating people or deals. Keys and values are sent as-is.
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.
hideIfEmptyNoSets whether we will hide this field if it is empty.
isRecurringNoWhether a date field occurs every year (e.g. birthdays, anniversaries, etc.).
orderWeightNoA weighted integer for the field to assign values for custom sorting.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.2/5.0
Behavior2/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 of behavioral disclosure, but it only restates the creation action and endpoint. It does not mention side effects, authorization needs, the conditional requirement of choices for dropdown fields, or response behavior.

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 short phrase plus endpoint, with no filler or redundancy. It front-loads the key action and resource immediately.

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

Completeness2/5

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

Despite 9 parameters, nested objects, no annotations, and no output schema, the entire context is one line. It doesn't mention conditional behavior around dropdown choices, extraBody/extraQuery usage, or related tools, leaving an agent with insufficient context for a create 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 the schema already documents all parameters and the tool description adds no parameter-level meaning. The baseline of 3 applies because the description does not need to compensate for schema gaps.

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 the exact action and resource: 'Create a deals custom field,' reinforced by the endpoint 'POST /dealCustomFields.' The word 'deals' distinguishes it from the sibling create_custom_field, so an agent can select it correctly without opening the schema.

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 on when to use this tool instead of alternatives such as create_custom_field, update_deal_custom_field, or list_deal_custom_fields. There are no when-to-use conditions, prerequisites, or exclusions.

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