hdls Contacts

hdls Contacts is a rich, standalone people database for your assistant — every contact with all their emails, phone numbers, freeform notes, and the lists they belong to. Where the CRM's contacts roll up to companies and deals, hdls Contacts is built for depth on the person: multiple emails and phones, a running note history, and flexible lists for segmentation.

The headline entity is the contact. Add as many emails, phones, and notes as you need, group people into lists, and pull the whole picture back with summarize_contact.

Common workflows

  • Capture a new person: create_contactadd_email / add_phoneadd_note.
  • Segment your people: create_listadd_to_list for newsletters, events, or outreach.
  • Recall everything: summarize_contact for the record plus its recent timeline.

hdls Contacts is a headless, MCP-native contact management backend. It manages detailed people/contact records with emails, phones, notes, and lists, operated entirely through named tools your AI assistant calls. It stands in for tools like HubSpot Contacts, Apple Contacts — same job, no UI to run.

💬 Just ask

"Add Ada Lovelace with her email and phone, then add her to my newsletter list."

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 Contacts is organized

The headline entity is the contact — start there, then attach the rest to it. Records connect by reference: an email links to a contact; a phone links to a contact; a note links to a contact; a list_member links to a list and a contact.

EntityPurposeRelates to
contactThe headline contact — every other record hangs off this.
emailAn email linked to a contact.contact
phoneA phone linked to a contact.contact
noteA note linked to a contact.contact
listList records.
list_memberA list member linked to a list and a contact.list, contact

Tools

Call these at https://hdls.ai/api/mcp/contacts. 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_contactCreate a new contact.first_name, last_name, preferred_name, title, department, company_name
create_listCreate a new list.namedescription, data

Update & advance

ToolWhat it doesRequiredOptional
update_contactUpdate an existing contact by id.idfirst_name, last_name, preferred_name, title, department
add_emailAdd an email.contact_id, valuelabel, is_primary, data
add_phoneAdd a phone.contact_id, valuelabel, is_primary, data
add_to_listAdd a record to a list.list_id, contact_idadded_at

Find & read

ToolWhat it doesRequiredOptional
search_contactsSearch contacts by free-text and/or column filters (tenant-scoped, paginated).search, filters, limit, orderBy
summarize_contactFetch a contact plus its most recent timeline activity in one call.idactivityLimit

Timeline

ToolWhat it doesRequiredOptional
add_noteAdd a note.contact_id, bodyauthor

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.

contact

FieldTypeRequiredNotes
first_nametext
last_nametext
preferred_nametext
titletextDisplay name.
departmenttext
company_nametext
account_reftext
primary_emailtext
primary_phonetext
ownertext
lifecycle_stagetext
lead_sourcetext
statustextLifecycle state.
timezonetext
localetext
do_not_contacttrue / false
address_line1text
address_line2text
citytext
regiontext
postal_codetext
countrytext
linkedintext
twittertext
websitetext
avatar_urltext
birthdaydate
tagslistFree-form labels.
datajsonFree-form JSON — custom fields live here.
created_bytext

email

FieldTypeRequiredNotes
contact_ididYesLinks to a contact.
valuetextYes
labeltext
is_primarytrue / false
datajsonFree-form JSON — custom fields live here.

phone

FieldTypeRequiredNotes
contact_ididYesLinks to a contact.
valuetextYes
labeltext
is_primarytrue / false
datajsonFree-form JSON — custom fields live here.

note

FieldTypeRequiredNotes
contact_ididYesLinks to a contact.
bodytextYes
authortext

list

FieldTypeRequiredNotes
nametextYesDisplay name.
descriptiontext
datajsonFree-form JSON — custom fields live here.

list_member

FieldTypeRequiredNotes
list_ididYesLinks to a list.
contact_ididYesLinks to a contact.
added_attimestamp

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.

Connect

On the concierge (https://hdls.ai/api/mcp), run install_product({ slug: "contacts" }) (admin/owner) to enable it for your workspace, then add https://hdls.ai/api/mcp/contacts 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_contact
Arguments: {
  "first_name": "Ada",
  "last_name": "Lovelace"
}

See All products · Connect your assistant · Automation