An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

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"
}
}
}
}
```