Skip to main content

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 identifier
  • recipient_count — number of users who received the notification
  • message — confirmation message

Parameters

ParameterTypeRequiredDescription
source_appgrammar_idstring (UUID)YesID of the appgrammar to broadcast from.
messagestringYesBroadcast message (1-2000 characters).
type"changelog" | "update" | "vulnerability" | "info"YesType of broadcast notification.
severity"info" | "update" | "breaking" | "vulnerability"NoSeverity 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"
}
}
}