INDIVIDUAL MCP TOOL
create_template
Create a reusable notification template so the same title, body, and imagery can be reused across campaigns without retyping.
LIVE ENDPOINT
https://pushary.com/api/mcp/mcp
Connect to this endpoint to inspect the live schema for create_template and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Potential side effects detected · medium confidence · heuristic, not a guarantee.
- A tool name or description contains a write-action term.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.pushary]
url = "https://pushary.com/api/mcp/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"pushary": {
"type": "http",
"url": "https://pushary.com/api/mcp/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: pushary
Remote MCP URL: https://pushary.com/api/mcp/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"pushary": {
"url": "https://pushary.com/api/mcp/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"pushary": {
"type": "http",
"url": "https://pushary.com/api/mcp/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "pushary",
"transport": "streamable-http",
"url": "https://pushary.com/api/mcp/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
send_notification— Send a one-way push notification to the user's phone and browser.ask_user— Ask the user a question as a push notification on their phone and block until they answer.propose_scope— Propose what this run will touch and block until the user ratifies it.wait_for_answer— Poll for the user's answer to a previously created question.cancel_question— Retract a pending question so it can no longer be answered.list_subscribers— List push notification subscribers for the site, with optional filters.get_subscriber— Get full details of a single subscriber by ID: browser, OS, location, tags, subscription status, and activity.count_subscribers— Get subscriber counts for the site broken down by status: total, active, and unsubscribed.