Lovable
Connect Pushary so the Lovable agent pings your phone when it finishes a build or needs your input
Complete the Quickstart first to get your API key.
Lovable supports custom MCP servers as personal connectors on its paid plans. Connect Pushary and the Lovable agent can ping your phone when it finishes a build or needs a decision, and you answer from your lock screen. You get the notification and question tools, but no enforced gate: the agent decides when to ask. For enforced approvals (an action blocked until you say yes), use an agent with hooks (see Supported agents).
Connect Pushary in Lovable
- In Lovable, go to Settings → Connectors → Personal connectors
- Click New MCP server
- Set Server name to
Pushary - Set Server URL to
https://pushary.com/api/mcp/mcp - Under Authentication, select Bearer token and paste your API key (
pk_xxx.secret_xxx) - Click Add server
Get your API key from Settings → API keys in your dashboard. See Get your API key.
Make it automatic: add the skill to Lovable
The connector gives Lovable the tools. To get Lovable to use them on its own (notify you when a build finishes, ask before risky changes) give it the Pushary instructions. Local agents install these with npx skills add Pushary/pushary-skill, but Lovable is a hosted builder, so you paste the same guidance into Lovable's Knowledge (Settings → Knowledge) instead. Add this:
# Pushary notifications
You have a Pushary MCP connector with tools: send_notification, ask_user,
wait_for_answer, cancel_question. Use them proactively, do not wait to be asked.
- When you finish a task that took several steps, call send_notification with a
short title and a one-line summary. Pass agentName "Lovable - {project}".
- Before a destructive or irreversible change (deleting data or files, dropping or
altering a table, deploying), call ask_user with type "confirm" and wait for the
answer. If the answer is no or none comes back, do not proceed, and say it was skipped.
- When a choice has 2 to 6 known options, use ask_user with type "select".
- Keep titles under 60 characters and bodies under 200. Max 3 notifications per task.Now you do not have to ask each time. Lovable notifies you on completion and checks in before risky steps on its own.
Prompts to try
You can also trigger it directly in any prompt:
Notify when a build finishes:
After you finish implementing this feature, send me a Pushary notification with
title "Lovable build done" and a one-line summary of what changed.Ask before a risky change:
Before you delete or rename any database table, use Pushary ask_user to confirm
with me, and wait for my answer before continuing.A blocking question waits for your answer for up to about 55 seconds. If you need longer, the agent can check again with wait_for_answer using the same question id (questions stay open for 10 minutes).
Tools
The Lovable agent can use send_notification, ask_user, wait_for_answer, cancel_question, and list_sessions. See the tools reference.