add_tracked_prompts
Add AEO prompts to track for a project, capturing questions for AI answer engines. Define prompt texts, topics, tags, and types to monitor performance.
Instructions
Add AEO prompts to track for a project (questions sent to AI answer engines).
EXPECTED SHAPE — each prompt is an object with at minimum a `text` field:
{"text": "best managed file transfer tools", "topic": "MFT",
"tags": ["mft"], "prompt_type": "category"}
Only `text` is required. Optional: topic, tags (list or comma-string),
prompt_type ("brand"|"category", default "category"), regions, language,
personas, platforms, analysis_types.
If you have a sheet/CSV, MAP its columns to this shape before calling
(e.g. a "Prompt" column -> text, "Topic" -> topic, "Tags" -> tags). If this
tool returns a structured error, fix the data per the error and retry.
Args:
project_id: The project UUID (from list_projects or create_project).
prompts: List of prompt objects (see shape above).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| config | No | ||
| prompts | Yes | ||
| project_id | Yes |