Skip to main content
Glama
gray-wilbee

fub-mcp

by gray-wilbee

create_deal_attachment

Attach an externally hosted file to a specific deal by providing its URI, deal ID, and file name.

Instructions

Add an attachment to a deal. (POST /dealAttachments)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
uriYesThe URI of an **externally** hosted file.
dealIdYesThe id of the deal you want to add an attachment to.
fileNameYesName of the file.
fileSizeNoSize of the file in bytes.
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/5.0
Behavior1/5

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

No annotations are provided, so the description must carry the full behavioral disclosure burden. It only says 'Add' and gives the endpoint; it does not mention side effects, permissions, idempotency, return behavior, or error conditions. This is insufficient for a mutating tool.

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?

A single clear sentence with the endpoint appended; there is no wasted wording and the core purpose is front-loaded. It is appropriately sized for the minimal information it conveys.

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 full schema coverage, this is a mutating tool with no annotations and no output schema. The description does not explain the result of the operation, what the response contains, or any behavioral constraints beyond the schema, leaving the agent under-informed.

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 all six parameters are already documented in the schema. The description adds no parameter-level meaning, so the baseline of 3 applies.

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 clearly states the action ('Add an attachment') and the resource ('to a deal'), and includes the HTTP endpoint. It distinguishes this creation tool from sibling tools like get_deal_attachment and update_deal_attachment.

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 get_deal_attachment or update_deal_attachment, nor any context for when adding an attachment is appropriate. The agent must infer usage from the tool name and schema.

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