list_my_domains
List the domains your organisation monitors (brand/domain intelligence). 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
This tool takes no parameters.
Example invocation
Ask your agent: "What domains are we monitoring?"
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_domains","arguments":{}}}'Response
{
"count": 2,
"items": [
{
"domain": "precursorintelligence.com",
"created_at": "2026-01-12T09:00:00.000Z"
},
{
"domain": "precursor-app.io",
"created_at": "2026-02-28T16:45: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 domains returned (equals items.length).
itemsarrayoptionalDomains your organisation monitors. Each object contains the fields below.
items[].domainstringoptionalThe monitored domain name.
items[].created_atstringoptionalISO 8601 timestamp when the domain was added to monitoring.
generated_atstringoptionalISO 8601 timestamp indicating when this response was generated.
Errors
| Code | Message | When |
|---|---|---|
-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 |