# Pushinator — MCP server on mcp.ai > Connect your Pushinator account and use 7 tools for notifications straight from your AI agent. Connect with your own API key. Pushinator provides push notification channels for sending real-time alerts to subscribed users and devices. By: mcp.ai · official Page: https://mcp.ai/pushinator ## Connect (MCP protocol) Remote MCP endpoint (HTTP, streamable): https://api.mcp.ai/p_pushinator?ms=1787293740000 Add it as a custom/remote MCP connector, then authenticate when prompted. ## REST API (no MCP client required) Every tool is also a REST endpoint, authed with a workspace API key. Discover: GET https://api.mcp.ai/api/pushinator/_endpoints # public; lists every endpoint Call: POST https://api.mcp.ai/api/pushinator/ Authorization: Bearer sk_live_… # create one at https://mcp.ai/settings/api-keys Content-Type: application/json Body: { …args } → { "ok": true, "tool": "", "result": { … } } ## Developer docs How to use (MCP or REST), markdown: https://mcp.ai/pushinator/skill.md Postman collection (v2.1): https://mcp.ai/pushinator/postman.json ## Tools - pushinator_create_channel(name: string, description?: string) — Create a Pushinator notification channel and return its channel ID and properties. - pushinator_delete_channel(channel_id: string) — Permanently delete a Pushinator notification channel by ID. This is destructive and removes the channel from subsequent reads and lists. - pushinator_get_channel(channel_id: string) — Get one Pushinator notification channel by its channel ID. - pushinator_get_current_user() — Return the Pushinator user associated with the connected API key. Use this to identify the connected account or verify that its credentials work. - pushinator_list_channels() — List every notification channel belonging to the connected Pushinator account. Use a returned channel ID with get, update, delete, or send-notification tools. - pushinator_send_notification(content: string, channel_id: string, acknowledgment_required?: boolean) — Send a push notification immediately to all subscribers of a Pushinator channel. This is an externally visible, irreversible action that may consume the account's monthly notification quota. The opera - pushinator_update_channel(name: string, channel_id: string, description?: string) — Replace the editable name and optional description of an existing Pushinator notification channel. ## Example prompts - "What can I do in Pushinator?" - "Show me a summary of my Pushinator account" ## Links Docs: https://mcp.ai/docs/mcps/pushinator Website: https://mcp.ai/mcps/pushinator