Your Data · Watchlist

list_my_favorite_threat_groups

List the threat groups/actors your organisation has favourited / follows. Costs 1 credit.

POST
tools/call

Cost: 1 credit per successful call  ·  Scope: mcp:org  ·  Response shape: jsonb

Returns data scoped to your own organisation only — the organisation is resolved from your API key and injected server-side, never read from the request.

Parameters

This tool takes no parameters.

Example invocation

Ask your agent: "Which threat groups are we tracking?"

curl -s https://api.precursorintelligence.com/functions/v1/mcp \
  -H "Authorization: Bearer $PRECURSOR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_my_favorite_threat_groups","arguments":{}}}'

Response

result.content[0].text (parsed)
{
  "count": 2,
  "items": [
    {
      "threat_group": "Akira",
      "created_at": "2026-03-04T14:22:00.000Z"
    },
    {
      "threat_group": "Scattered Spider",
      "created_at": "2026-01-19T09:48:00.000Z"
    }
  ],
  "generated_at": "2026-06-18T08:15:00.000Z"
}

The full MCP envelope, including _meta.precursor with request_id, credits, and response_truncated, is documented in Response Format.

Response fields

countintegeroptional

Number of entries returned (equals items.length).

itemsarrayoptional

Threat groups your organisation follows. Each object contains the fields below.

items[].threat_groupstringoptional

Name of the favourited threat group / actor.

items[].created_atstringoptional

ISO 8601 timestamp of when the group was added to your favourites (UTC).

generated_atstringoptional

ISO 8601 timestamp indicating when this response was generated.

Errors

CodeMessageWhen
-32001unauthorizedThe API key is invalid/revoked, the IP is not allowed, or the key lacks the mcp:org scope.
-32002insufficient_creditsYour credit balance is zero; top up from the dashboard
-32603internalUnexpected server error; the credit is automatically refunded