https://github.com/appricos/pushinator-mcp
Official Pushinator MCP server
https://github.com/appricos/pushinator-mcp
mcp-server model-context-protocol push-notifications
Last synced: 2 months ago
JSON representation
Official Pushinator MCP server
- Host: GitHub
- URL: https://github.com/appricos/pushinator-mcp
- Owner: appricos
- Created: 2025-03-31T19:32:08.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-04-01T15:15:31.000Z (3 months ago)
- Last Synced: 2025-04-01T16:38:14.681Z (3 months ago)
- Topics: mcp-server, model-context-protocol, push-notifications
- Language: TypeScript
- Homepage: https://pushinator.com/
- Size: 9.77 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- mcp-index - Pushinator - Facilitates the integration of real-time push notifications into applications, allowing for the delivery of timely updates and alerts to user devices. Provides a robust API for simplified notification management and seamless integration. (Cloud Services)
README
# Pushinator MCP
To install dependencies:
```bash
bun install
```To build:
```bash
bun run build
```After that, add the Pushinator MCP to your MCP client (the API token can be retrieved in your [Pushinator API tokens page](https://console.pushinator.com/tokens])):
```json
{
"mcpServers": {
"pushinator": {
"command": "node",
"args": ["path-to-repo/build/index.js"],
"env": {
"PUSHINATOR_API_KEY": "YOUR_PUSHINATOR_API_KEY"
}
}
}
}
```