Skip to main content
Glama
gray-wilbee

fub-mcp

by gray-wilbee

post_people_ignore_unclaimed

Ignore a lead by passing its person ID, causing it to be excluded from future follow-up actions.

Instructions

Ignore a lead. (POST /people/ignoreUnclaimed)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
personIdNoInclude the person ID of the lead you want to ignore either like this or as part of the path.
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.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It says 'Ignore' but does not explain what ignoring a lead does—whether it is irreversible, whether it removes the lead from the unclaimed pool, or what side effects occur. This is thin for a state-changing operation.

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 extremely short and contains zero filler; the verb and endpoint are front-loaded. However, it is arguably too terse given the semantic ambiguity of 'ignore' in this domain.

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?

For a state-changing operation with no annotations and no output schema, the description is incomplete. It omits when to use it, what happens to the ignored lead, and how it relates to the unclaimed/claim workflow, all of which an agent would need to call it safely.

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 parameters are already well-documented in the schema. The description adds no parameter-specific meaning, but the baseline of 3 applies because the schema does the heavy lifting.

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 names a specific verb ('Ignore') and resource ('a lead') and includes the exact endpoint, so an agent knows both the operation and the HTTP target. It is clear, though it does not explicitly say these are unclaimed leads, relying partly on the tool name and path.

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 versus alternatives such as post_people_claim or get_people_unclaimed. It never clarifies the workflow around unclaimed leads, so an agent is left to infer context from the endpoint path.

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