Skip to main content
Glama
gray-wilbee

fub-mcp

by gray-wilbee

update_group

Modify existing groups by updating name, user membership, and routing settings like distribution and lead assignment.

Instructions

Update a group. (PUT /groups/{id})

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
nameYesThe name of the group.
typeNo`Agent` groups allow admins and agents and `Lender` groups allow lender role users.Agent
usersYesAn array of user IDs that will be members of this group.
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.
claimWindowNoNumber of seconds to allow someone to claim a lead in a first-to-claim group before reassigning. The default is 30 minutes (1800 seconds) with a minimum of 1 minute and maximum of 30 minutes.
distributionNoThe distribution model to utilize. Lender groups cannot be set to `first-to-claim`.round-robin
defaultPondIdNoThe ID of the pond to assign unclaimed first-to-claim leads to after the claim window expires.
defaultUserIdNoThe ID of the user to assign unclaimed first-to-claim leads to after the claim window expires.
defaultGroupIdNoThe ID of the group to assign unclaimed first-to-claim leads to after the claim window expires.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3/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. The HTTP verb 'PUT' hints at replacement-style semantics, but the description does not mention idempotency, effects on existing group memberships, authentication requirements, or whether this is a full update versus a partial update. For a mutating tool, that is a significant omission.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence plus an endpoint, with no filler and the core verb front-loaded. It is appropriately brief, though so terse that it omits usage context. On the conciseness/structure axis this brevity is a strength, not a weakness.

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?

Given 11 parameters, nested objects, and no annotations or output schema, the description should at least explain update semantics, required fields, and likely return behavior. None of that is present. The rich schema explains parameter meanings, but the tool's overall behavior is under-specified for an agent to invoke it confidently.

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?

The schema already describes 91% of parameters, including enum constraints, defaults, and meanings, so the description's job here is mostly to add context beyond the schema. The one valuable addition is 'PUT /groups/{id}', which clarifies that id goes into the URL path rather than only into the request body. This pushes it slightly above the baseline.

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 is short but does give a clear verb ('Update') and resource ('group'), and the HTTP endpoint helps an agent tell it apart from create_group, get_group, and list_groups at a basic level. However, it never specifies what aspects of the group can be updated—membership, distribution, claim window, etc.—so it is clear but not fully specific.

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?

There is no when-to-use guidance at all. The description never contrasts this tool with create_group, get_group, or list_groups, nor does it state that the id must refer to an existing group. An agent is left to infer the intended use from the tool name alone.

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