Skip to content
AdlyseMCP Docs
Product guideMCP reference
⌘K
Open Adlyse
⌘K
Overview
QuickstartAuthentication
adlyse-insights
list_ad_accountsget_dashboard_snapshotget_impact_analysislist_guidelinesget_guideline
adlyse-reports
adlyse-ads
adlyse-workflows
adlyse-adminadlyse-all
  1. Overview
  2. adlyse-insights

get_guideline

Fetch the full markdown content of one guideline.

Note: for the brand slug, content is generated live from the org’s strategy profile at request time (see Guidelines) rather than read from a stored document, so it always reflects the current profile.

Parameters#

NameTypeRequiredDefaultDescription
slugstringyesGuideline slug — discoverable via list_guidelines

Returns#

json
{
  "guideline": {
    "slug": "brand",
    "path": "guidelines/brand.md",
    "content": "# Brand voice\n\n- Warm, direct, never corporate...",
    "content_type": "markdown",
    "version": 3,
    "pinned_in_prompt": true,
    "frontmatter": { "requires": [] },
    "updated_at": "2026-04-15T12:00:00Z"
  },
  "source": "adlyse.guidelines@v1"
}

See list_guidelines for field descriptions; the only addition here is guideline.content with the full markdown payload.

Errors#

error_typeWhen
auth_errorMissing / invalid API key
not_foundNo active guideline at that slug for your org
validation_errorEmpty or non-string slug

Example#

Request:

json
{ "slug": "brand" }

Response:

json
{
  "guideline": {
    "slug": "brand",
    "content": "# Brand voice\n\nWarm, direct, never corporate. Prefer concrete proof points over superlatives.\n...",
    "version": 3,
    "pinned_in_prompt": true
  },
  "source": "adlyse.guidelines@v1"
}

See also#

  • list_guidelines — discover slugs
  • Guidelines — the in-app authoring view
Previouslist_guidelinesNextadlyse-reports