Windsurf and other MCP agents
Connect Windsurf or any MCP client to Pushary for notifications and questions
Complete the Quickstart first to get your API key.
Windsurf and other MCP clients connect to Pushary over MCP. You get the notification and question tools, but no enforced gate: the agent chooses when to ask. For enforced approvals, use an agent with hooks (see Supported agents).
Connect over MCP
Add this to your MCP configuration file (the location varies by tool):
{
"mcpServers": {
"pushary": {
"url": "https://pushary.com/api/mcp/mcp",
"headers": {
"Authorization": "Bearer pk_xxx.xxx"
}
}
}
}Replace pk_xxx.xxx with your actual API key. After adding it, check your tool's MCP settings and confirm Pushary shows as connected.
stdio-only clients
For tools that do not support HTTP MCP transport, use the mcp-remote bridge:
{
"mcpServers": {
"pushary": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://pushary.com/api/mcp/mcp",
"--header",
"Authorization:Bearer pk_xxx.xxx"
]
}
}
}No-code and HTTP
If your tool is not an MCP client (n8n, Zapier, Make, or a script), use the plain REST endpoint instead. See Connect any agent.
Install the skill
Install the Pushary skill so your agent knows when to send notifications and ask questions:
npx skills add Pushary/pushary-skillAvailable tools
Once connected, your agent can use send_notification, ask_user, wait_for_answer, and cancel_question. See the tools reference.