Prompt
Edit the questions behind your AI Visibility score. The agent suggests buyer questions and country settings. You approve changes that use prompt budget or a weekly run.
Paste this into Claude, Codex, Cursor, ChatGPT, or another coding agent. The website, the expected output, and the approval boundary are already written in. First run? Complete the one-time setup; your agent can handle that too.
What does Tune the Questions AI Answers do?
This is the sequence the agent follows. It reads data on its own. You approve each send or change.
- 01
Read the set
Run
get_ai_visibilityfor the tracked questions, the score, and which answers mention you. - 02
Add buyer questions
Run
add_ai_visibility_promptfor one question, orimport_ai_visibility_promptsfor a pasted list. - 03
Target a market
Run
set_ai_visibility_prompt_locationto ask one question from a specific country. - 04
Drop the dead ones
Run
remove_ai_visibility_promptfor weak questions. Each question uses prompt budget. - 05
Run the set
Run
run_ai_visibility_scanto ask them now. Paid plans, one run per website per week. - 06
Diff two runs
Run
diff_ai_visibility_runsfor the score delta, gained and lost mentions, and new sources behind answers that named the site.
Commands inside Tune the Questions AI Answers
The exact MCP tool calls behind the prompt. Your agent runs these against the verifieddr server; the ones that send anything still stop for your approval.
# 1. What you track today, and how it scoredget_ai_visibility { site: "yourwebsite.com" } # 2. Track one more question a buyer would askadd_ai_visibility_prompt { site: "yourwebsite.com", prompt: "best crm for agencies" } # 3. Import a pasted list in one goimport_ai_visibility_prompts { site: "yourwebsite.com", prompts: ["best crm for agencies", "crm with client portal"] } # 4. Ask one question from a single marketset_ai_visibility_prompt_location { site: "yourwebsite.com", promptId: "prompt-id", location: "us" } # 5. Stop tracking a question nobody asksremove_ai_visibility_prompt { site: "yourwebsite.com", promptId: "prompt-id" } # 6. Ask them now (paid, one run per site per week)run_ai_visibility_scan { site: "yourwebsite.com" } # 7. Compare two stored runsdiff_ai_visibility_runs { site: "yourwebsite.com", from: "2026-07-01", to: "2026-08-01" }