Backstop · MCP directory
HubSpot — undoable MCP server
CRM objects — contacts, companies, deals, tickets — mirrored with a working undo.
Streamable-HTTP MCP endpoint (Bearer auth)
https://getbackstop.co/api/mcp/hubspotTools (9)
| Tool | What it does |
|---|---|
| crm_read_object | Read a HubSpot CRM object by type and id. |
| crm_create_object | Create a HubSpot CRM object. Journaled and reversible through Backstop. |
| crm_update_object | Update properties on a HubSpot CRM object. Journaled and reversible through Backstop. |
| crm_batch_update | Update many HubSpot CRM objects at once. Journaled one action per record, so each is independently undoable. |
| crm_archive_object | Archive (soft-delete) a HubSpot CRM object. Undo is a guided restore (rule H-1). |
| backstop_preview | Dry-run a proposed write: show exactly what it would change, its blast radius (records + associations it touches, and any workflow it would enroll — a non-undoable side effect), and its reversibility, without executing. |
| backstop_undo | Roll back writes made through Backstop in a session, with conflict detection. Optionally a subset of action ids. |
| backstop_diff | Field-level diff for a session: prior, written, and current-live values. |
| backstop_report | Exportable audit record for a session: every action, what it changed, current state, and exposure impact. |
Every mirrored write is journaled before it executes, so backstop_undo can roll it back with conflict detection. backstop_preview shows the blast radius and side effects first.