list_my_reports
List the threat-report analyses your organisation has run (report URL + extracted ATT&CK technique count). Costs 1 credit.
tools/callCost: 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
limitintegeroptionaldefault: 25Maximum number of reports to return. Accepted range: 1–100.
Example invocation
Ask your agent: "List the threat reports we've analysed."
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_reports","arguments":{"limit":25}}}'Response
{
"count": 2,
"items": [
{
"id": "2d9c6f81-4a17-4e53-b8d0-6f1a7c3e9b25",
"url": "https://example.com/reports/apt29-2026-campaign.pdf",
"technique_count": 14,
"created_at": "2026-06-11T09:30:00.000Z"
},
{
"id": "7e3b1a04-8c52-4d96-9f1e-2b6d4c8a0f73",
"url": "https://example.com/reports/ransomware-supply-chain.html",
"technique_count": 9,
"created_at": "2026-06-05T14:12: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
countintegeroptionalNumber of reports returned (equals items.length).
itemsarrayoptionalThreat-report analyses your organisation has run. Each object contains the fields below.
items[].idstringoptionalUnique identifier (UUID) for the report analysis.
items[].urlstringoptionalThe URL of the threat report that was analysed.
items[].technique_countintegeroptionalNumber of MITRE ATT&CK techniques extracted from the report.
items[].created_atstringoptionalISO 8601 timestamp when the analysis was run.
generated_atstringoptionalISO 8601 timestamp indicating when this response was generated.
Errors
| Code | Message | When |
|---|---|---|
-32602 | invalid_params: limit: min:1 | limit is less than 1 |
-32602 | invalid_params: limit: max:100 | limit exceeds 100 |
-32001 | unauthorized | The API key is invalid/revoked, the IP is not allowed, or the key lacks the mcp:org scope. |
-32002 | insufficient_credits | Your credit balance is zero; top up from the dashboard |
-32603 | internal | Unexpected server error; the credit is automatically refunded |