# Push by Techulus — how to use (mcp.ai)

Connect your Push by Techulus account and use 6 tools for notifications straight from your AI agent. Connect with your own API key. Push by Techulus offers a cross-platform solution for sending push notifications via code and no-code to deliver transactional information in real-time.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_push_by_techulus?ms=1787295780000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `push_by_techulus_delete_team_member_or_invite`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/push_by_techulus`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/push_by_techulus/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/push_by_techulus/delete/team/member/or/invite` — Tool to remove a user from the team or revoke a pending invitation. Use when you need to revoke team access or cancel an invite for a specific email address.
  - body: { team: string, email: string }
- `POST https://api.mcp.ai/api/push_by_techulus/invite/user/to/team` — Tool to invite a user to a team by sending an email invitation. Use when you need to add a new member to an existing team.
  - body: { team: string, email: string }
- `POST https://api.mcp.ai/api/push_by_techulus/send/notification/async` — Tool to send push notification asynchronously to all devices in an account or team. Use when you have more than 10 devices for better performance.
  - body: { body: string, link?: string, image?: string, sound?: string, title: string, channel?: string, timeSensitive?: boolean }
- `POST https://api.mcp.ai/api/push_by_techulus/send/notification/sync` — Tool to send push notifications synchronously to all linked devices. Use when you need immediate confirmation of notification delivery to all devices or teams.
  - body: { body: string, link?: string, image?: string, sound?: string, title: string, channel?: string, timeSensitive?: boolean }
- `POST https://api.mcp.ai/api/push_by_techulus/send/notification/to/group` — Tool to send push notification to a specific device group. Use when you need to notify multiple devices in a group with customizable title, body, sound, and media options.
  - body: { body: string, link?: string, image?: string, sound?: string, title: string, channel?: string, groupId: string, timeSensitive?: boolean }
- `POST https://api.mcp.ai/api/push_by_techulus/send/notification/webhook/post` — Tool to send push notifications to all devices associated with a specific API key via POST request. Use when you need to deliver notifications through webhook integrations or team-based distribution.
  - body: { body: string, link?: string, image?: string, sound?: string, title: string, api_key: string, channel?: string, time_sensitive?: boolean }

## Example prompts
- "What can I do in Push by Techulus?"
- "Show me a summary of my Push by Techulus account"

## More
- Page: https://mcp.ai/push_by_techulus
- Agent spec (llms.txt): https://mcp.ai/push_by_techulus/llms.txt
- Postman collection: https://mcp.ai/push_by_techulus/postman.json
