Followupboss MCP Server

A Model Context Protocol (MCP) server for Follow Up Boss CRM by Ed Neuhaus (Neuhaus Realty Group, Austin TX) - 160 tools covering 100% of the

Remote serverstreamable-httpGo

What is the Followupboss MCP server?

Followupboss MCP server exists for a simple reason — assistants are far more useful when they can act on Followupboss directly instead of describing what you should do. A Model Context Protocol (MCP) server for Follow Up Boss CRM by Ed Neuhaus (Neuhaus Realty Group, Austin TX) - 160 tools covering 100% of the official API plus about/help meta tools.

What you get

  1. Got a real estate referral? I take referrals from licensed agents in any state for clients moving to or from Texas. Reach out via neuhausre.com/contact. 2. Write about it. Blog post, LinkedIn, X — tag me and link to neuhausre.com. 3. Open an issue or PR if you find a bug or build something useful.

What the assistant can call

Once Followupboss is connected, these are the calls the assistant has available:

  • listEvents — List events with filtering by person, type, property
  • createEvent — Create a new event (lead event, property inquiry, etc.)
  • getEvent — Get a single event by ID
  • listPeople — Search and filter contacts extensively
  • createPerson — Create a new contact
  • getPerson — Get a contact by ID
  • updatePerson — Update contact details, stage, tags, etc
  • deletePerson — Delete (trash) a contact
  • checkDuplicate — Check if a contact exists by email or phone
  • listUnclaimed — List unclaimed leads in ponds
  • claimPerson — Claim an unclaimed lead
  • createPersonAttachment — Attach a file to a contact

Configuration and credentials

You will need 2 environment variables: FUB_API_KEY, FUB_SYSTEM_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Setting it up

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

Choosing this one

This sits in the team communication group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Followupboss's toolset — listEvents, createEvent, getEvent and 11 more — is a fair guide to whether it matches your workflow. It is maintained by mindwear-capitian; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Followupboss's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Before you rely on it

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Followupboss.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the followupboss mcp server does with a few real requests.

Available tools

ToolWhat it does
listEventsList events with filtering by person, type, property
createEventCreate a new event (lead event, property inquiry, etc.)
getEventGet a single event by ID
listPeopleSearch and filter contacts extensively
createPersonCreate a new contact
getPersonGet a contact by ID
updatePersonUpdate contact details, stage, tags, etc.
deletePersonDelete (trash) a contact
checkDuplicateCheck if a contact exists by email or phone
listUnclaimedList unclaimed leads in ponds
claimPersonClaim an unclaimed lead
createPersonAttachmentAttach a file to a contact
getPersonAttachmentGet an attachment by ID
updatePersonAttachmentUpdate an attachment

How to install the Followupboss MCP server

{
  "mcpServers": {
    "followupboss": {
      "command": "node",
      "args": ["/full/path/to/followupboss-mcp-server/index.js"],
      "env": {
        "FUB_API_KEY": "your_api_key_here"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
FUB_API_KEYCredential the server authenticates with.Yes
FUB_SYSTEM_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Followupboss to listEvents.
  • Use Followupboss to createEvent.
  • Use Followupboss to getEvent.

Frequently asked questions

It connects Followupboss to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (listEvents, createEvent, getEvent, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Followupboss directly.