appgrammar_broadcast
Axiom: V — Ecosystem | Category: Community
Send a broadcast notification to all subscribers, forkers, and team members of an appgrammar. Returns broadcast ID and recipient count.
Use this to notify the community about changelogs, updates, vulnerability disclosures, or general information related to your appgrammar. Only the appgrammar author or team members can broadcast.
Returns:
broadcast_id— unique broadcast identifierrecipient_count— number of users who received the notificationmessage— confirmation message
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
source_appgrammar_id | string (UUID) | Yes | ID of the appgrammar to broadcast from. |
message | string | Yes | Broadcast message (1-2000 characters). |
type | "changelog" | "update" | "vulnerability" | "info" | Yes | Type of broadcast notification. |
severity | "info" | "update" | "breaking" | "vulnerability" | No | Severity level. Defaults to a value derived from the appgrammar config. |
Example
{
"method": "tools/call",
"params": {
"name": "appgrammar_broadcast",
"arguments": {
"source_appgrammar_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"message": "v2.1.0: Added Stripe webhook retry logic and improved error handling.",
"type": "changelog"
}
}
}