wot_anomalies
Detect anomalous network behavior in Nostr pubkeys by identifying ghost followers, asymmetric relationships, cluster patterns, and suspicious activity.
Instructions
Detect anomalous patterns in a Nostr pubkey's network behavior. Checks for ghost followers, asymmetric relationships, cluster patterns, and suspicious activity.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pubkey | Yes | Nostr public key in hex format | |
| payment_hash | No | Payment hash if free tier exhausted |
Implementation Reference
- src/index.ts:203-213 (handler)The "wot_anomalies" tool is registered here, defining the schema and the async handler which calls the `wotGet` helper.
"wot_anomalies", "Detect anomalous patterns in a Nostr pubkey's network behavior. Checks for ghost followers, asymmetric relationships, cluster patterns, and suspicious activity.", { pubkey: z.string().describe("Nostr public key in hex format"), payment_hash: z.string().optional().describe("Payment hash if free tier exhausted"), }, async ({ pubkey, payment_hash }) => { const data = await wotGet("/anomalies", { pubkey }, payment_hash); return textResult(formatL402(data)); } );