hdls Success

hdls Success is a headless, MCP-native customer success management backend. It manages accounts, health scores, success plans, and touchpoints, operated entirely through named tools your AI assistant calls. It stands in for tools like Gainsight, ChurnZero, Catalyst — same job, no UI to run.

💬 Just ask

"Create an account for Acme, then show me my accounts."

You don't call these tools yourself — just tell your assistant in plain English. Everything below is the reference for when you (or your assistant) want the exact details.

How Success is organized

The headline entity is the account — start there, then attach the rest to it. Records connect by reference: a success_plan links to an account; a touchpoint links to an account. The health_check table is an append-only timeline — every change and note lands there and is never edited or deleted.

EntityPurposeRelates to
accountA post-sale account managed for success: health, ARR, renewal, owner.
success_planA success plan linked to an account.account
touchpointA touchpoint linked to an account.account
health_checkAppend-only point-in-time health scores + signals.account

Common workflows

Each line is one real sequence of tool calls — your assistant chains them for you.

  • Set up an account end to end: create_accountlog_health_checkcreate_success_plan

Tools

Call these at https://hdls.ai/api/mcp/csm. Required fields you must supply; optional fields refine the call. You never pass tenant_id — it is stamped server-side.

Create

ToolWhat it doesRequiredOptional
create_accountCreate a new account.nameaccount_ref, tier, arr, health_score, status, csm_owner
create_success_planCreate a new success plan.account_id, objectivestatus, due_date, data

Update & advance

ToolWhat it doesRequiredOptional
log_health_checkLog health check.account_idscore, signals, note
log_touchpointLog touchpoint.account_id, bodykind, author

Find & read

ToolWhat it doesRequiredOptional
search_accountsSearch accounts by free-text and/or column filters (tenant-scoped, paginated).search, filters, limit, orderBy
renewals_dueList the renewals coming due.

Field lists come from the product's live schema and are embedded in each tool's own description — read the tool description for the exact, current fields.

Field reference

Every field you can set on each record. Custom fields you add live alongside these in data.

account

FieldTypeRequiredNotes
nametextYesDisplay name.
account_reftext
tiertext
arrnumeric(14,2)
health_scorenumber
statustextLifecycle state.
csm_ownertext
renewal_datedate
datajsonFree-form JSON — custom fields live here.

success_plan

FieldTypeRequiredNotes
account_ididYesLinks to an account.
objectivetextYes
statustextLifecycle state.
due_datedate
datajsonFree-form JSON — custom fields live here.

touchpoint

FieldTypeRequiredNotes
account_ididYesLinks to an account.
kindtext
bodytextYes
authortext

Tailor it with custom fields

Add fields without a schema change. add_custom_field defines one, list_custom_fields shows what's defined, and promote_custom_field (admin) shares a personal field with the whole workspace. The value lives in each row's data (JSON) and is set and read through the normal record tools. See Products, tools & custom fields for the full model.

Roles & safety

  • Tenant isolation is automatic. Your credential is pinned to one workspace; you never pass tenant_id, and you can only ever see your own data (enforced by Postgres row-level security).
  • Role-gated. Permissions run reader < member < admin < owner. Installing a product and promoting a custom field workspace-wide need admin/owner.
  • History is append-only. The health_check timeline is never edited or deleted — it's your audit trail.

Connect

On the concierge (https://hdls.ai/api/mcp), run install_product({ slug: "csm" }) (admin/owner) to enable it for your workspace, then add https://hdls.ai/api/mcp/csm as a connector in your assistant — see Connect your assistant.

A worked example

The literal call your assistant makes when you ask it to create the headline record:

Tool: create_account
Arguments: {
  "name": "Acme Corp"
}

See All products · Connect your assistant · Automation