AdlyseAdlyseMCP Docs
⌘K
Overview
adlyse-insights
list_ad_accountsget_dashboard_snapshotget_impact_analysislist_guidelinesget_guideline
adlyse-reports
list_report_templateslist_reportsget_reportgenerate_reportlist_report_targets
adlyse-ads
list_campaignsget_performancelist_adsget_ad_performancelist_change_eventsupdate_campaign_statusupdate_campaign_budget
adlyse-workflows
list_workflowsget_workflowrun_workflowget_run_status
  1. Overview/
  2. adlyse-insights

get_guideline

Fetch the full markdown content of one guideline.

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
←Previous
list_guidelines
Next→
adlyse-reports