get_visibility_actions | Pendium MCP Docs | Pendium.ai
Pendium MCP Docs

get_visibility_actions

Get prioritized action items to improve AI visibility — content to create, sources to reach, and technical fixes.

Get prioritized action items to improve AI visibility. Actions are generated from scan recommendations and include content to create, sources to reach out to, and technical improvements. Filter by status or priority to focus on what matters.

Authentication: Required

Parameters

ParameterTypeRequiredDescription
syntheticIdintegerYesThe agent ID to get actions for.
status"pending" | "in_progress" | "completed" | "dismissed"NoFilter by action status. Returns all statuses if omitted.
priority"high" | "medium" | "low"NoFilter by priority level.

Response

{
  "syntheticId": 1234,
  "brandName": "Example",
  "actionCount": 8,
  "pendingCount": 5,
  "actions": [
    {
      "id": "act-abc123",
      "actionType": "create_content",
      "category": "content",
      "title": "Write a comparison guide: Example vs CompetitorX",
      "description": "AI platforms frequently mention CompetitorX but not Example in comparison queries. A detailed comparison post would help.",
      "priority": "high",
      "status": "pending",
      "targetUrl": null,
      "relatedQueries": ["best tools for X", "Example vs CompetitorX"],
      "createdAt": "2026-03-20T12:00:00Z",
      "completedAt": null
    }
  ]
}

Action types

TypeDescription
create_contentWrite a blog post, article, or page targeting specific queries
update_contentImprove existing content to better answer AI queries
outreachReach out to sources that AI platforms cite
technicalTechnical SEO or structured data improvements

Workflow

  1. Call get_visibility_actions with status: "pending" and priority: "high" to find the most impactful tasks.
  2. Use get_brand_voice, get_factsheet, and query_knowledge to gather context for content creation.
  3. After completing an action, call complete_action to mark it done.
  4. Run a new scan with scan_visibility to measure the impact.

On this page