← IDE plugins hub

PushNotifi for Claude Code

Plugin name pushnotifi · marketplace pushnotifi-me · version 0.4.0

What it does

Bundles the same stdio MCP server as the Cursor plugin: approvals via pushnotifi_request_ack / pushnotifi_await_ack, plus send, list, and test tools. Credentials are collected through plugin userConfig when you enable the plugin (not passed as tool arguments).

Official Claude Code references

Install (from Git)

This repository ships a marketplace at .claude-plugin/marketplace.json with

"source": "./"

Add the repo via Git, then install the plugin (marketplace id is pushnotifi-me):

/plugin marketplace add /path/to/claude-plugin-pushnotifi
/plugin install pushnotifi@pushnotifi-me

CLI equivalent:

claude plugin marketplace add /path/to/claude-plugin-pushnotifi
claude plugin install pushnotifi@pushnotifi-me

Validate: claude plugin validate . and claude plugin validate .claude-plugin/plugin.json from the repository root. Open the dashboard for API keys when prompted.

Local development

claude --plugin-dir /path/to/claude-plugin-pushnotifi

Layout (repository)

  • .claude-plugin/plugin.json — manifest and userConfig
  • .mcp.json — runs node on mcp/dist/server.js and sets NODE_PATH to the persistent data directory's node_modules (CLAUDE_PLUGIN_DATA)
  • hooks/hooks.json — SessionStart installs MCP production deps when mcp/package.json changes
  • skills/, commands/ — namespaced e.g. /pushnotifi:init

Build MCP after source edits

cd mcp && npm install && npm run build

Repository

Claude Code plugin | PushNotifi