Skip to main content
Glama
gray-wilbee

fub-mcp

by gray-wilbee

create_person_attachment

Attach an externally hosted file to a person record by providing person ID, file URI, and file name. Enables linking documents or images to a contact in Follow Up Boss CRM.

Instructions

Attach a file to a person. (POST /personAttachments)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
uriYesURI of an externally hosted file.
fileNameYesName of the file.
fileSizeNoSize of the file in bytes.
personIdYesID of the person.
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

B3.2/5.0
Behavior2/5

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

There are no annotations, so the description carries the full burden of disclosing behavior. It only implies a write operation via 'Attach' and 'POST', but does not mention authentication needs, idempotency, duplicate handling, validation, or what is returned on success or failure.

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 extremely concise and front-loaded, stating the action and resource in the first phrase. The parenthetical endpoint adds useful reference information without extra filler.

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?

With no annotationsthor, no output schema, six parameters, and nested objects, the description is too thin. It does not explain return values, the purpose or behavior of extraBody/extraQuery in context, or error conditions, leaving an agent with only the schema to understand the full call.

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 documented in the input schema. The description itself adds no parameter-level meaning, which matches the baseline of 3 for high schema coverage.

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: 'Attach a file to a person' and reinforces it with the endpoint POST /personAttachments. This clearly differentiates the tool from sibling tools like create_deal_attachment by specifying the person scope.

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 provides no guidance on when to use this tool versus alternatives such as get_person_attachment, update_person_attachment, or create_deal_attachment. It also omits prerequisites or conditions, such as whether the person must exist or whether the file must already be externally accessible.

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