Example Prompts
Real prompts that drive end-to-end Amba workflows through the MCP server.
The whole point of MCP is that you describe the outcome and your agent composes the tool calls. Here are prompts that work — copy, paste, watch the agent stitch them together.
Re-engagement push
Create a push campaign for users who haven't logged in for 7 days. Title: "We miss you 👋". Body: "Come back and check off a todo." Schedule it for tomorrow at 9am Pacific.
The agent calls:
amba_create_segment—last_seen_at not_within "7d", namedseg_inactive_7d.amba_create_push_campaign— title, body,segment_id,scheduled_atset to tomorrow 09:00 PT in UTC.
Project portfolio glance
List all my projects and show DAU for each.
amba_list_projects— fetch the portfolio.- For each,
amba_get_link_stats(or the relevant analytics tool) — pull DAU. - The agent renders a single comparison table.
XP rule for streak completers
Add a new XP rule that grants 100 XP for completing a streak day.
amba_create_xp_rule— qualifying eventstreak_qualified, amount100.
The streak system already emits streak_qualified whenever a user keeps their streak alive, so the rule lights up immediately.
Daily affirmations content library
Set up a daily affirmations content library. Add the 30 quotes I'll paste in. Schedule one per day at 8am in the user's local timezone.
amba_create_content_library— nameaffirmations.amba_add_content_items— bulk insert all 30.amba_create_content_schedule—daily_rotation,cron: "0 8 * * *", with the user's timezone resolved at delivery time.
Full fitness gamification
Stand up gamification for a fitness app: XP for workouts and app opens, a daily workout streak, three achievements, and a weekly XP leaderboard.
amba_create_xp_rule× 2 —workout_completed = 50 XP,app_open = 10 XPcapped daily.amba_create_streak— daily, qualifying eventworkout_completed, 6-hour grace.amba_create_achievement× 3 — first workout, 7-day streak, 1000 XP.amba_create_leaderboard— XP, weekly window.
Phased paywall rollout
Roll out the new paywall to 10% of premium-eligible users.
amba_set_config— keyfeature_paywall_v2, defaultfalse, condition{ percentage: 10, value: true }scoped to aseg_premium_eligiblesegment.
Bump the percentage as you watch metrics; the agent can do that too:
Increase the paywall rollout to 50%.
amba_set_config— same key, condition percentage updated to50.
Configure push providers
Configure APNs for my todo app — here's the .p8, key id ABC123, team id TEAM456, bundle com.example.todo, sandbox.
amba_configure_integration— providerapns, the credentials inline.amba_test_integration— providerapns, validates against Apple before you trust it.
A 401/403 from Apple surfaces as valid: false and the agent can tell you exactly which field is wrong.