Skip to content

MCP reference / Website

Website builder tools

Ten tools covering the practice's public site and its blog. Writes affect a draft; publishing is the single tool here that changes what the public can see, and it takes effect immediately.

How to read this

Each tool below lists its arguments exactly as the input schema declares them — the type, whether it is required, and the permitted values where the schema fixes them. There are no argument descriptions: the schemas carry types, not prose, and inventing a sentence per argument would be writing fiction about a contract.

practiceId is never an argument. It comes from your token, and the write paths strip it if a client sends one anyway.

Every example is a complete tools/call request with this tool's required arguments filled in. Errors are returned inside a 200 response with isError set — see the MCP overview for that envelope, and the full catalogue for every tool at a glance.

Website builder

The practice's public marketing site. Writes affect a draft until published; publishing is the one tool here that changes what the public sees.

get_site

Read-onlyAny member

Read the site with its pages, modules and FAQs. Returns null if no site has been created.

Example call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "get_site",
    "arguments": {}
  }
}

Result

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "structuredContent": {
      "status": 200,
      "ok": true,
      "data": { "...": "the requested records" }
    }
  }
}

Errors

CodeStatusWhen
unauthorized401The bearer token is missing, invalid or expired.

list_site_page_modules

Read-onlyAny member

Read the content modules and FAQs of one page.

Arguments

ToolTypeRequired?
pageIdstringRequired

Example call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "list_site_page_modules",
    "arguments": {
      "pageId": "0f1c7a2e-...."
    }
  }
}

Result

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "structuredContent": {
      "status": 200,
      "ok": true,
      "data": { "...": "the requested records" }
    }
  }
}

Errors

CodeStatusWhen
validation_failed400An argument is missing, of the wrong type, or outside its allowed values.
not_found404The id does not exist in your practice. A malformed id looks identical.
unauthorized401The bearer token is missing, invalid or expired.

check_site_slug_available

Read-onlyOwner only

Check whether a slug is valid and free. Returns availability plus a reason when it is not.

Arguments

ToolTypeRequired?
slugstringRequired

Example call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "check_site_slug_available",
    "arguments": {
      "slug": "smile-dental"
    }
  }
}

Result

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "structuredContent": {
      "status": 200,
      "ok": true,
      "data": { "...": "the requested records" }
    }
  }
}

Errors

CodeStatusWhen
validation_failed400An argument is missing, of the wrong type, or outside its allowed values.
forbidden403The caller is not an owner of the practice.
unauthorized401The bearer token is missing, invalid or expired.

write_site

WritesCan deleteReaches outsideOwner only

action=create sets up the site; update edits settings; publish PUSHES THE CURRENT DRAFT LIVE to the public internet, immediately visible to anyone.

Arguments

ToolTypeRequired?
actioncreate | update | publishRequired
slugstringOptional
localeen | elOptional
templateIdstringOptional
brandColorstringOptional
fontPairingstringOptional
logoFileIdstringOptional
heroFileIdstringOptional
metaTitlestringOptional
metaDescriptionstringOptional
showServicePricesbooleanOptional

Example call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "write_site",
    "arguments": {
      "action": "create"
    }
  }
}

Result

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "structuredContent": {
      "status": 200,
      "ok": true,
      "data": { "...": "the written record" }
    }
  }
}

Errors

CodeStatusWhen
validation_failed400An argument is missing, of the wrong type, or outside its allowed values.
not_found404The id does not exist in your practice. A malformed id looks identical.
forbidden403The caller is not an owner of the practice.
unauthorized401The bearer token is missing, invalid or expired.

update_site_page

WritesOwner only

Edit one page's metadata — title, slug, SEO.

Arguments

ToolTypeRequired?
pageIdstringRequired
enabledbooleanOptional
navLabelstringOptional
navOrderintegerOptional
metaTitlestringOptional
metaDescriptionstringOptional

Example call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "update_site_page",
    "arguments": {
      "pageId": "0f1c7a2e-...."
    }
  }
}

Result

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "structuredContent": {
      "status": 200,
      "ok": true,
      "data": { "...": "the written record" }
    }
  }
}

Errors

CodeStatusWhen
validation_failed400An argument is missing, of the wrong type, or outside its allowed values.
not_found404The id does not exist in your practice. A malformed id looks identical.
forbidden403The caller is not an owner of the practice.
unauthorized401The bearer token is missing, invalid or expired.

write_site_module

WritesCan deleteOwner only

action=create adds a content module to a page (requires pageId); update and delete require moduleId. Changes affect the draft until the site is published.

Arguments

ToolTypeRequired?
actioncreate | update | deleteRequired
pageIdstringOptional
moduleIdstringOptional
typehero | intro | services_teaser | team_teaser | why_us | testimonials | hours_map | cta | faq | service_grid | insurance_payment | story | team_grid | credentials | gallery | address_map | hours | contact_form | access_parking | booking_widget | service_detailOptional
positionintegerOptional
enabledbooleanOptional
contentobjectOptional

Example call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "write_site_module",
    "arguments": {
      "action": "create"
    }
  }
}

Result

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "structuredContent": {
      "status": 200,
      "ok": true,
      "data": { "...": "the written record" }
    }
  }
}

Errors

CodeStatusWhen
validation_failed400An argument is missing, of the wrong type, or outside its allowed values.
not_found404The id does not exist in your practice. A malformed id looks identical.
forbidden403The caller is not an owner of the practice.
unauthorized401The bearer token is missing, invalid or expired.

write_site_faq

WritesCan deleteOwner only

action=create adds an FAQ to a page (requires pageId); update and delete require faqId.

Arguments

ToolTypeRequired?
actioncreate | update | deleteRequired
pageIdstringOptional
faqIdstringOptional
questionstringOptional
answerstringOptional
positionintegerOptional

Example call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "write_site_faq",
    "arguments": {
      "action": "create"
    }
  }
}

Result

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "structuredContent": {
      "status": 200,
      "ok": true,
      "data": { "...": "the written record" }
    }
  }
}

Errors

CodeStatusWhen
validation_failed400An argument is missing, of the wrong type, or outside its allowed values.
not_found404The id does not exist in your practice. A malformed id looks identical.
forbidden403The caller is not an owner of the practice.
unauthorized401The bearer token is missing, invalid or expired.

list_blog_posts

Read-onlyAny member

List the practice's blog posts — drafts and published alike — with their slugs, status and bodies.

Example call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "list_blog_posts",
    "arguments": {}
  }
}

Result

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "structuredContent": {
      "status": 200,
      "ok": true,
      "data": { "...": "the requested records" }
    }
  }
}

Errors

CodeStatusWhen
unauthorized401The bearer token is missing, invalid or expired.

list_blog_categories

Read-onlyAny member

List the categories a post can be filed under. Call this before writing a post if you intend to set one: the id must belong to this site.

Example call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "list_blog_categories",
    "arguments": {}
  }
}

Result

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "structuredContent": {
      "status": 200,
      "ok": true,
      "data": { "...": "the requested records" }
    }
  }
}

Errors

CodeStatusWhen
unauthorized401The bearer token is missing, invalid or expired.

write_blog_post

WritesCan deleteOwner only

Write, edit or remove a blog post. create needs title, slug and body; update and delete need postId. A post is created as a DRAFT, and changing its status alone does not put it on the live site — the site itself has to be published.

Arguments

ToolTypeRequired?
actioncreate | update | deleteRequired
postIdstringOptional
titlestringOptional
slugstringOptional
excerptstringOptional
bodystringOptional
categoryIdstringOptional
authorMembershipIdstringOptional
statusdraft | publishedOptional
metaTitlestringOptional
metaDescriptionstringOptional

Example call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "write_blog_post",
    "arguments": {
      "action": "create"
    }
  }
}

Result

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "structuredContent": {
      "status": 200,
      "ok": true,
      "data": { "...": "the written record" }
    }
  }
}

Errors

CodeStatusWhen
validation_failed400An argument is missing, of the wrong type, or outside its allowed values.
not_found404The id does not exist in your practice. A malformed id looks identical.
forbidden403The caller is not an owner of the practice.
unauthorized401The bearer token is missing, invalid or expired.

Common questions

Patient records are encrypted in transit and at rest, files are stored privately and served through short-lived signed links, and every change is written to an audit log. Staff accounts sign in with passkeys rather than shared passwords.

Yes. Every list in HyperCRM exports to CSV from the app, and your files can be downloaded at any time. Your practice data belongs to you, and there is no export fee or waiting period — on either plan, during the trial, and after you cancel.

HyperCRM is paid software. Every practice starts with a 30-day free trial of the full Complete plan, with no card required. After that, plans start at €19 and €29 a month excluding VAT, banded by how many practitioners you have. Every price is printed on the pricing page rather than quoted on a call.