# Follow Up Boss — how to use (mcp.ai)

Connect your Follow Up Boss account and use 99 tools for CRM straight from your AI agent. Connect with your own API key. Follow Up Boss is the leading CRM for high-growth real estate businesses. Get all your leads in one place & take control of your follow up so you can work smarter.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_follow_up_boss?ms=1787291400000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `follow_up_boss_create_action_plans_people`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/follow_up_boss`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/follow_up_boss/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/follow_up_boss/create/action/plans/people` — Tool to apply an Action Plan to a person in Follow Up Boss. Use when you need to assign or apply a specific action plan workflow to a contact.
  - body: { personId: integer, actionPlanId: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/create/appointment` — Tool to create a new appointment in Follow Up Boss. Use when you need to schedule meetings, property showings, or events. Requires title, start time, and end time. Optionally send invitation emails to
  - body: { end: string, start: string, title: string, allDay?: boolean, typeId?: integer, invitees?: object[], location?: string, outcomeId?: integer, createdById?: integer, description?: string, sendInvitation?: boolean }
- `POST https://api.mcp.ai/api/follow_up_boss/create/appointment/outcome` — Tool to create an appointment outcome in Follow Up Boss. Use when you need to add a new outcome type for appointment tracking.
  - body: { name: string, orderWeight?: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/create/appointment/types` — Tool to create a new appointment type in Follow Up Boss. Use when you need to define a new category for appointments that can be scheduled in the system.
  - body: { name: string, orderWeight?: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/create/call` — Tool to add a call record to Follow Up Boss. Use when you need to log a phone call interaction with a person.
  - body: { note?: string, phone: string, userId?: integer, outcome?: string, duration?: integer, personId: integer, toNumber?: string, fromNumber?: string, isIncoming: boolean, recordingUrl?: string }
- `POST https://api.mcp.ai/api/follow_up_boss/create/custom/field` — Tool to create a custom field in Follow Up Boss. Use when you need to add a new custom data field to person records, such as tracking anniversaries, customer types, or any other custom information.
  - body: { type: string, label: string, choices?: string[], hideIfEmpty?: boolean, isRecurring?: boolean, orderWeight?: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/create/deal/custom/field` — Tool to create a custom field for deals in Follow Up Boss. Use when you need to add custom metadata fields to track deal-specific information like stages, priorities, or custom dates.
  - body: { type: string, label: string, choices?: string[], readOnly?: boolean, hideIfEmpty?: boolean, isRecurring?: boolean, orderWeight?: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/create/deals` — Tool to create a new deal in Follow Up Boss. Use when you need to add a deal to track sales opportunities in your pipeline. Requires deal name and stage ID.
  - body: { name: string, price?: integer, stageId: integer, userIds?: integer[], peopleIds?: integer[], description?: string, orderWeight?: integer, possessionDate?: string, teamCommission?: integer, agentCommission?: integer, commissionValue?: integer, dueDiligenceDate?: string, projectedCloseDate?: string, earnestMoneyDueDate?: string, finalWalkThroughDate?: string, mutualAcceptanceDate?: string }
- `POST https://api.mcp.ai/api/follow_up_boss/create/em/campaign` — Tool to create an email marketing campaign in Follow Up Boss. Use when you need to create a new email campaign with HTML content.
  - body: { name: string, origin: string, subject: string, bodyHtml: string, originId: string }
- `POST https://api.mcp.ai/api/follow_up_boss/create/em/events` — Tool to notify Follow Up Boss about marketing emails sent, opens, clicks, bounces, unsubscribes and spam reports. Use when you need to track email marketing events.
  - body: { emEvents: object[] }
- `POST https://api.mcp.ai/api/follow_up_boss/create/events` — Tool to send in a lead or an event related to a lead in Follow Up Boss. Use when you need to track lead activities, inquiries, property views, or any other event type supported by the system.
  - body: { type?: string, person?: object, source?: string, system?: string, message?: string, pageUrl?: string, campaign?: object, property?: object, pageTitle?: string, occurredAt?: string, description?: string, pageDuration?: integer, pageReferrer?: string, propertySearch?: object }
- `POST https://api.mcp.ai/api/follow_up_boss/create/groups` — Tool to create a new Follow Up Boss group with specified members and distribution settings. Use when you need to organize team members into groups for lead distribution.
  - body: { name: string, type?: string, users: integer[], claimWindow?: integer, distribution?: string, defaultPondId?: integer, defaultUserId?: integer, defaultGroupId?: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/create/pipelines` — Tool to create a new pipeline in Follow Up Boss. Use when you need to set up a new pipeline for tracking deals with customizable stages. Only the owner has access to create and modify pipelines.
  - body: { name: string, stages?: object[], description?: string, orderWeight?: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/create/ponds` — Tool to create a new pond in Follow Up Boss. Use when you need to organize leads into a specific group with a lead agent and member users.
  - body: { name: string, userId: integer, userIds: integer[] }
- `POST https://api.mcp.ai/api/follow_up_boss/create/reactions` — Tool to add a reaction (emoji) to a Note, Call, or ThreadedReply. Use when you need to add an emoji reaction to existing content.
  - body: { body: string, refId: integer, refType: string }
- `POST https://api.mcp.ai/api/follow_up_boss/create/stage` — Tool to create a new stage in Follow Up Boss. Use when you need to add a new pipeline stage for organizing contacts.
  - body: { name: string, orderWeight?: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/create/teams` — Tool to create a new team in Follow Up Boss. Use when you need to organize users into teams with optional team leaders.
  - body: { name: string, userIds: integer[], leaderIds?: integer[] }
- `POST https://api.mcp.ai/api/follow_up_boss/create/template` — Tool to create a new email template in Follow Up Boss. Use when you need to create a reusable email template with a name, subject, and HTML body.
  - body: { body: string, name: string, subject: string, isShared?: boolean }
- `POST https://api.mcp.ai/api/follow_up_boss/create/text/message/template` — Tool to create a text message template in Follow Up Boss. Use when you need to create a reusable SMS template that can include dynamic variables like contact names and greetings.
  - body: { name: string, message: string, isShared?: boolean }
- `POST https://api.mcp.ai/api/follow_up_boss/delete/appointment` — Tool to delete an appointment by ID. Use when you need to remove an existing appointment from Follow Up Boss.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/delete/appointment/outcomes` — Tool to delete an appointment outcome by ID. Use when you need to remove an appointment outcome and reassign existing appointments to a different outcome.
  - body: { id: integer, assignOutcomeId: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/delete/appointment/type` — Tool to delete an appointment type by its ID. Use when you need to remove an appointment type and reassign existing appointments to another type.
  - body: { id: integer, assignTypeId: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/delete/custom/field` — Tool to delete a custom field by its ID. Use when you need to remove a custom field from Follow Up Boss. Restricted to account owners only.
  - body: { id: string }
- `POST https://api.mcp.ai/api/follow_up_boss/delete/deal` — Tool to delete a deal by its ID. Use when you need to permanently remove a deal from Follow Up Boss.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/delete/deal/custom/field` — Tool to delete a deal custom field by ID. Use when you need to permanently remove a custom field configuration from deals. Only the account owner can delete deal custom fields.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/delete/groups` — Tool to delete a group by its ID. Use when you need to permanently remove a group from Follow Up Boss.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/delete/people/relationship` — Tool to delete a people relationship by ID in Follow Up Boss. Use when you need to remove a relationship between contacts.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/delete/pipeline` — Tool to delete a pipeline by its ID from Follow Up Boss. Use when you need to permanently remove a pipeline from the system. The deletion is irreversible and will remove the pipeline and all associate
  - body: { id: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/delete/pond` — Tool to delete a pond by its ID. Use when removing a pond and reassigning its contacts to another agent.
  - body: { id: integer, assignTo: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/delete/stage` — Tool to delete a Follow Up Boss stage by ID. Use when you need to remove a stage and reassign action plans to another stage.
  - body: { id: integer, assignStageId: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/delete/teams` — Tool to delete a team by its ID. Use when you need to remove a team from Follow Up Boss. Optionally merge team members to another team before deletion.
  - body: { id: string, moveToTeamId?: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/delete/text/message/template` — Tool to delete a text message template by ID. Use when you need to remove a text message template. Note: If the template is in use by an Action Plan, you will get a 403 Forbidden response. Use GET /te
  - body: { id: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/get/appointment` — Tool to retrieve an appointment by its ID. Use when you need to fetch details of a specific appointment.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/get/appointment/outcome` — Tool to retrieve an appointment outcome by ID. Use when you need to fetch details about a specific appointment outcome from Follow Up Boss.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/get/appointment/types` — Tool to retrieve an appointment type by ID. Use when you need to fetch details about a specific appointment type from Follow Up Boss.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/get/call` — Tool to retrieve a call by its ID from Follow Up Boss. Use when you need to fetch details about a specific call record.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/get/deal` — Tool to retrieve a deal by its ID from Follow Up Boss. Use when you need to fetch details about a specific deal.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/get/deal/custom/field` — Tool to retrieve a deal custom field by its ID from Follow Up Boss. Use when you need to fetch details about a specific deal custom field configuration.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/get/event` — Tool to retrieve a single event by its ID from Follow Up Boss. Use when you need to fetch details about a specific event record.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/get/groups` — Tool to retrieve a group by its ID from Follow Up Boss. Use when you need to fetch details about a specific group.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/get/identity` — Tool to retrieve identity and authentication information from Follow Up Boss. Use when you need to verify the authenticated user's account and user details.
- `POST https://api.mcp.ai/api/follow_up_boss/get/me` — Tool to retrieve information about the currently authenticated user. Use when you need to fetch details about the authenticated user's account, settings, or permissions.
- `POST https://api.mcp.ai/api/follow_up_boss/get/people/relationship` — Tool to retrieve a people relationship by its ID from Follow Up Boss. Use when you need to fetch details about a specific relationship between contacts.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/get/pipelines` — Tool to retrieve a pipeline by its ID from Follow Up Boss. Use when you need to fetch details about a specific pipeline.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/get/ponds` — Tool to retrieve a pond by its ID from Follow Up Boss. Use when you need to fetch details about a specific pond group.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/get/smart/list` — Tool to retrieve a Smart List by its ID from Follow Up Boss. Use when you need to fetch details about a specific Smart List.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/get/stage` — Tool to retrieve a stage by its ID from Follow Up Boss. Use when you need to fetch details about a specific stage.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/get/teams` — Tool to retrieve a team by its ID from Follow Up Boss. Use when you need to fetch details about a specific team.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/get/template` — Tool to retrieve an email template by its ID from Follow Up Boss. Use when you need to fetch details about a specific template, optionally with merge fields populated for a person.
  - body: { id: integer, mergePersonId?: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/get/text/message` — Tool to retrieve a text message by its ID from Follow Up Boss. Use when you need to fetch details about a specific text message record.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/get/text/message/template` — Tool to retrieve a text message template by its ID from Follow Up Boss. Use when you need to fetch details about a specific text message template, including its content, usage statistics, and associat
  - body: { id: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/get/user` — Tool to retrieve a user by its ID from Follow Up Boss. Use when you need to fetch details about a specific user.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/list/action/plans` — Tool to get a list of Action Plans from Follow Up Boss. Use when you need to retrieve available action plans with optional filtering by status, names, or IDs, and support for pagination and sorting.
  - body: { ids?: string, sort?: string, limit?: integer, names?: string[], offset?: integer, status?: string }
- `POST https://api.mcp.ai/api/follow_up_boss/list/action/plans/people` — Tool to list Action Plans applied to a particular person or list people on a particular Action Plan. Use when you need to retrieve action plan assignments, optionally filtered by person or action plan
  - body: { limit?: integer, offset?: integer, personId?: integer, actionPlanId?: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/list/appointment/outcomes` — Tool to list all appointment outcomes from Follow Up Boss. Use when you need to retrieve a list of appointment outcomes with optional sorting and pagination.
  - body: { sort?: string, limit?: integer, offset?: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/list/appointment/types` — Tool to list all appointment types from Follow Up Boss. Use when you need to retrieve a list of available appointment types with optional sorting and pagination.
  - body: { sort?: string, limit?: integer, offset?: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/list/appointments` — Tool to search for appointments in Follow Up Boss. Use when you need to retrieve a list of appointments, optionally filtered by person, user, or date range. Supports pagination for large result sets.
  - body: { end?: string, limit?: integer, start?: string, offset?: integer, userId?: integer, personId?: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/list/calls` — Tool to search for calls in Follow Up Boss. Use when you need to retrieve a list of calls with optional filtering by person ID or phone numbers.
  - body: { limit?: integer, phone?: string, offset?: integer, personId?: integer, toNumber?: string, fromNumber?: string }
- `POST https://api.mcp.ai/api/follow_up_boss/list/custom/fields` — Tool to list all custom fields in Follow Up Boss. Use when you need to retrieve custom field definitions, optionally filtered by label or sorted by specific fields.
  - body: { sort?: string, label?: string, limit?: integer, offset?: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/list/deal/custom/fields` — Tool to list all deal custom fields in Follow Up Boss. Use when you need to retrieve deal custom field definitions, optionally filtered by label or sorted by specific fields.
  - body: { sort?: string, label?: string, limit?: integer, offset?: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/list/deals` — Tool to search for and list deals from Follow Up Boss. Use when you need to retrieve multiple deals with optional filters by pipeline, user, person, or status.
  - body: { sort?: string, limit?: integer, offset?: integer, status?: string, userId?: integer, personId?: integer, pipelineId?: integer, includeDeleted?: integer, includeArchived?: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/list/em/campaigns` — Tool to list email marketing campaigns from Follow Up Boss. Use when you need to retrieve all campaigns or filter by origin/originId.
  - body: { sort?: string, limit?: integer, offset?: integer, origin?: string, originId?: string }
- `POST https://api.mcp.ai/api/follow_up_boss/list/em/events` — Tool to retrieve email marketing events from Follow Up Boss. Use when you need to fetch information about marketing emails sent, opens, clicks, bounces, unsubscribes, and spam reports. Supports filter
  - body: { type?: string, limit?: integer, offset?: integer, personId?: integer, updatedAfter?: string }
- `POST https://api.mcp.ai/api/follow_up_boss/list/events` — Tool to search for and list events from Follow Up Boss. Use when you need to retrieve events with optional filtering by person, event type, property association, or property address, with pagination s
  - body: { next?: string, type?: string, limit?: integer, offset?: integer, personId?: integer, hasProperty?: boolean, propertyAddress?: string }
- `POST https://api.mcp.ai/api/follow_up_boss/list/groups` — Tool to list all groups from Follow Up Boss. Use when you need to retrieve a list of groups, optionally filtered by type (Agent/Lender) or sorted by id/name.
  - body: { sort?: string, type?: string }
- `POST https://api.mcp.ai/api/follow_up_boss/list/groups/round/robin` — Tool to list groups with round-robin data from Follow Up Boss. Use when you need to retrieve groups configured for round-robin distribution.
  - body: { sort?: string, type?: string }
- `POST https://api.mcp.ai/api/follow_up_boss/list/inbox/apps` — Tool to list all inbox app installations from Follow Up Boss. Use when you need to retrieve a list of installed inbox apps with optional pagination.
  - body: { limit?: integer, offset?: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/list/people/relationships` — Tool to list all people relationships from Follow Up Boss. Use when you need to retrieve relationships between contacts with optional filtering by person ID, name, or first/last name, and sorting capa
  - body: { name?: string, sort?: string, lastName?: string, personId?: integer, firstName?: string }
- `POST https://api.mcp.ai/api/follow_up_boss/list/pipelines` — Tool to search for pipelines in Follow Up Boss. Use when you need to retrieve a list of pipelines, optionally filtering by exact name match.
  - body: { name?: string }
- `POST https://api.mcp.ai/api/follow_up_boss/list/ponds` — Tool to list all ponds from Follow Up Boss. Use when you need to retrieve a list of pond groups with pagination support.
  - body: { limit?: integer, offset?: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/list/smart/lists` — Tool to list Smart Lists from Follow Up Boss. Use when you need to retrieve a list of Smart Lists with support for pagination and filtering by FUB version.
  - body: { all?: boolean, fub2?: boolean, limit?: integer, offset?: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/list/stages` — Tool to retrieve a list of stages from Follow Up Boss. Use when you need to fetch all stages with optional pagination and sorting.
  - body: { sort?: string, limit?: integer, offset?: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/list/team/inboxes` — Tool to list all shared team inboxes from Follow Up Boss. Use when you need to retrieve available team inboxes with their names, IDs, and users who have access.
- `POST https://api.mcp.ai/api/follow_up_boss/list/teams` — Tool to get a list of teams from Follow Up Boss. Use when you need to retrieve all teams with pagination support. Note: Not all plans have access to the teams feature. If you do not have access, this 
  - body: { limit?: integer, offset?: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/list/templates` — Tool to list all email templates from Follow Up Boss. Use when you need to retrieve multiple email templates with pagination support.
  - body: { limit?: integer, offset?: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/list/text/message/templates` — Tool to list all text message templates from Follow Up Boss. Use when you need to retrieve multiple text message templates with pagination support.
  - body: { limit?: integer, offset?: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/list/text/messages` — Tool to list text messages for a person or phone number from Follow Up Boss. Use when you need to retrieve text messages with filtering options. Note: At least one filter parameter must be provided wh
  - body: { id?: string, phone?: string, personId?: integer, threadId?: integer, toNumber?: string, fromNumber?: string, groupTextId?: integer, participants?: string, sharedInboxId?: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/list/timeframes` — Tool to get a list of timeframes from Follow Up Boss. Use when you need to retrieve available timeframes.
- `POST https://api.mcp.ai/api/follow_up_boss/list/users` — Tool to search for and list users from Follow Up Boss. Use when you need to retrieve multiple users with optional filters by role, name, email, or other criteria.
  - body: { name?: string, role?: string, sort?: string, email?: string, limit?: integer, fields?: string, offset?: integer, includeDeleted?: boolean }
- `POST https://api.mcp.ai/api/follow_up_boss/list/webhooks` — Tool to retrieve a list of webhooks from Follow Up Boss. Use when you need to view registered webhooks with optional filtering by event type or status.
  - body: { sort?: string, event?: string, limit?: integer, offset?: integer, status?: string, X-System?: string, X-System-Key?: string }
- `POST https://api.mcp.ai/api/follow_up_boss/merge/template` — Tool to merge an email template with person data using Follow Up Boss API. Use when you need to generate personalized email content by replacing merge fields like %contact_name% with actual person dat
  - body: { recipients?: object, templateId: integer, mergePersonId?: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/merge/text/message/template` — Tool to merge a text message template with person data. Use when you need to generate personalized text messages by merging a template with contact information. The template supports merge fields like
  - body: { personId?: integer, recipients?: object, templateId: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/update/action/plans/people` — Tool to update the status of an Action Plan to Person relationship in Follow Up Boss. Use when you need to pause or resume an action plan applied to a contact.
  - body: { id: integer, status: string }
- `POST https://api.mcp.ai/api/follow_up_boss/update/appointment` — Tool to update an existing appointment in Follow Up Boss. Use when you need to modify appointment details like title, time, location, or invitees. Requires appointment ID, title, start time, and end t
  - body: { id: integer, end: string, start: string, title: string, allDay?: boolean, typeId?: integer, invitees?: object[], location?: string, outcomeId?: integer, description?: string, sendInvitation?: boolean }
- `POST https://api.mcp.ai/api/follow_up_boss/update/appointment/outcomes` — Tool to update an existing appointment outcome in Follow Up Boss. Use when you need to modify the name or sort order of an appointment outcome.
  - body: { id: integer, name?: string, orderWeight?: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/update/appointment/types` — Tool to update an existing appointment type in Follow Up Boss. Use when you need to modify the name or sort order of an appointment type.
  - body: { id: integer, name?: string, orderWeight?: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/update/calls` — Tool to update an existing call record in Follow Up Boss. Use when you need to modify call details such as notes, duration, outcome, or other call attributes. Only calls created by the account/system 
  - body: { id: integer, note?: string, phone?: string, userId?: integer, outcome?: string, duration?: integer, personId?: integer, toNumber?: string, fromNumber?: string, isIncoming?: boolean, recordingUrl?: string }
- `POST https://api.mcp.ai/api/follow_up_boss/update/custom/fields` — Tool to update an existing custom field in Follow Up Boss by its ID. Use when you need to modify the label, choices, ordering, or display settings of a custom field.
  - body: { id: integer, label?: string, choices?: string[], hideIfEmpty?: boolean, isRecurring?: boolean, orderWeight?: integer, dropdownChoiceMap?: integer[] }
- `POST https://api.mcp.ai/api/follow_up_boss/update/deal/custom/fields` — Tool to update an existing deal custom field in Follow Up Boss. Use when you need to modify custom field properties like label, type, display settings, or dropdown choices.
  - body: { id: integer, type: string, label: string, choices?: string[], readOnly?: boolean, hideIfEmpty?: boolean, isRecurring?: boolean, orderWeight?: integer, dropdownChoiceMap?: integer[] }
- `POST https://api.mcp.ai/api/follow_up_boss/update/deals` — Tool to update an existing deal in Follow Up Boss. Use when you need to modify deal details such as name, price, description, stage, or associated people and users.
  - body: { id: integer, name?: string, price?: integer, stageId?: integer, userIds?: integer[], peopleIds?: integer[], description?: string, possessionDate?: string, teamCommission?: integer, agentCommission?: integer, commissionValue?: integer, dueDiligenceDate?: string, projectedCloseDate?: string, earnestMoneyDueDate?: string, finalWalkThroughDate?: string, mutualAcceptanceDate?: string }
- `POST https://api.mcp.ai/api/follow_up_boss/update/em/campaigns` — Tool to update an existing email marketing campaign in Follow Up Boss. Use when you need to modify campaign name, subject line, or HTML body content.
  - body: { id: integer, name?: string, subject?: string, bodyHtml?: string }
- `POST https://api.mcp.ai/api/follow_up_boss/update/groups` — Tool to update an existing Follow Up Boss group with modified members and distribution settings. Use when you need to change group configuration or membership.
  - body: { id: integer, name: string, type?: string, users: integer[], claimWindow?: integer, distribution?: string, defaultPondId?: integer, defaultUserId?: integer, defaultGroupId?: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/update/people/relationships` — Tool to update details of a specific people relationship in Follow Up Boss. Use when you need to modify relationship information such as name, type, contact details (emails, phones), or addresses.
  - body: { id: integer, type?: string, emails?: object[], phones?: object[], lastName?: string, addresses?: object[], firstName?: string }
- `POST https://api.mcp.ai/api/follow_up_boss/update/pipelines` — Tool to update an existing pipeline in Follow Up Boss. Use when you need to modify pipeline properties such as name, description, order, or stages. Only the owner has access to create and modify pipel
  - body: { id: integer, name?: string, stages?: object[], description?: string, orderWeight?: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/update/ponds` — Tool to update an existing pond in Follow Up Boss. Use when you need to change the name, lead agent, or member list of a pond.
  - body: { id: integer, name?: string, userId?: integer, userIds?: integer[] }
- `POST https://api.mcp.ai/api/follow_up_boss/update/stages` — Tool to update an existing stage in Follow Up Boss. Use when you need to modify stage properties like name or sort order.
  - body: { id: integer, name?: string, orderWeight?: integer }
- `POST https://api.mcp.ai/api/follow_up_boss/update/teams` — Tool to update an existing team in Follow Up Boss. Use when you need to modify team name, leaders, or members.
  - body: { id: integer, name?: string, userIds?: integer[], leaderIds?: integer[] }
- `POST https://api.mcp.ai/api/follow_up_boss/update/templates` — Tool to update an existing email template in Follow Up Boss. Use when you need to modify the name, subject, or body of an existing template.
  - body: { id: string, body: string, name: string, subject: string }
- `POST https://api.mcp.ai/api/follow_up_boss/update/text/message/template` — Tool to update an existing text message template in Follow Up Boss. Use when you need to modify the name, message content, or sharing settings of an existing SMS template.
  - body: { id: string, name: string, message: string, isShared?: boolean }

## Example prompts
- "What can I do in Follow Up Boss?"
- "Show me a summary of my Follow Up Boss account"

## More
- Page: https://mcp.ai/follow_up_boss
- Agent spec (llms.txt): https://mcp.ai/follow_up_boss/llms.txt
- Postman collection: https://mcp.ai/follow_up_boss/postman.json
