Skip to main content
Glama
gray-wilbee

fub-mcp

by gray-wilbee

create_call

Log a phone call to a person in Follow Up Boss CRM by providing the phone number, call direction, outcome, duration, and optional note.

Instructions

Add a call. (POST /calls)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
noteNoThe log message entered for this call.
phoneYesThe phone number this call was made to or from.
userIdNoThe ID of the user that made or received a call. (This can only be set by administrators, otherwise the currently logged in user's ID is used.)
outcomeNoThe outcome of the call, which can be one of `Interested`, `Not Interested`, `Left Message`, `No Answer`, `Busy` or `Bad Number`.
durationNoLength of the call in seconds.
personIdYesThe ID of a person associated with this call.
toNumberNoThe phone number this call was made to.
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.
fromNumberNoThe phone number this call was made from.
isIncomingYesSets this as an incoming or outgoing call.
recordingUrlNoThe URL for the call recording.

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?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It only states 'Add a call' and the endpoint, without covering permission requirements, side effects, required fields, or response behavior. This is minimal disclosure for a mutation tool.

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?

'Add a call. (POST /calls)' is short, front-loaded, and free of filler. It is concise, though arguably too terse for a 12-parameter creation tool, but the conciseness dimension itself is handled well.

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 12-parameter creation endpoint with no output schema and no annotations, the description omits operational context such as required fields, admin-only userId behavior, and call outcome semantics. The schema explains parameter meaning, but the description does not provide enough surrounding context for confident invocation.

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 12 parameters are already documented and the baseline is 3. The description adds no additional parameter semantics beyond the HTTP method, but it does not need to compensate for missing schema coverage.

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 uses a clear verb ('Add') and resource ('a call') and includes the HTTP endpoint (POST /calls) for unambiguous identification. It signals creation, distinguishing it from get_call/list_calls/update_call at a basic level, though it does not explicitly name those siblings.

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 guidance on when to use this tool versus update_call or list_calls, and no mention of prerequisites such as personId, phone, and isIncoming. The sibling list shows alternatives exist, but the description does nothing to route an agent toward the correct choice.

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