list_personas | Pendium MCP Docs | Pendium.ai
Pendium MCP Docs

list_personas

List all buyer personas for a brand.

List all buyer personas for a brand. Personas represent different buyer types (e.g., "Technical Startup Founder", "Enterprise CMO"). Each persona gets different AI responses because they have different context and intent.

Authentication: Required

Parameters

ParameterTypeRequiredDescription
syntheticIdintegerYesThe agent ID to list personas for.

Response

{
  "syntheticId": 1234,
  "brandName": "Example",
  "personaCount": 3,
  "personas": [
    {
      "id": "persona-1",
      "name": "Technical Startup Founder",
      "role": "CTO / Technical Co-Founder",
      "demographics": "25-40, technical background, leading engineering at early-stage startup",
      "goals": ["Find efficient developer tools", "Reduce manual SEO work"],
      "painPoints": ["Limited marketing budget", "No dedicated marketing team"],
      "systemContext": "You are a technical startup founder evaluating AI visibility tools...",
      "isActive": true
    }
  ]
}

Key fields

FieldDescription
personaCountNumber of personas
personas[].nameHuman-readable persona name
personas[].roleJob title or role
personas[].goalsWhat this persona is trying to achieve
personas[].painPointsChallenges and frustrations
personas[].systemContextThe system prompt used when querying AI platforms from this persona's perspective
personas[].isActiveWhether this persona is included in scans

On this page