API access
Your AI client reaches First Advantage through one ParcelOps MCP endpoint, so there is no separate key to hold for it and no per-source client to write. Reaching it takes your own credentials (API key).
Where it came from
Freshness and coverage
What this source cannot tell you
- ⚠ Where it stops geographically, because the covered area is not declared. An empty answer will not tell you whether the place is out of range or the record is simply missing.
- ⚠ Which years it spans, because the covered period is not declared.
- ⚠ How current a field is, because the refresh schedule is not declared.
- ⚠ Anything First Advantage does not publish. ParcelOps returns this source as it stands and never fills a blank field from a different one.
Methods (6)
A method is one call your agent can make against this source.
getAccountDetails
readList the root account and sub-account names visible from an account ID.
What you must provideaccountIdInput schema
{ "type": "object", "properties": { "accountId": { "type": "string", "minLength": 1, "maxLength": 256, "description": "First Advantage account ID." } }, "required": [ "accountId" ], "additionalProperties": false }listPackages
readList all screening packages configured under an account.
What you must provideaccountIdInput schema
{ "type": "object", "properties": { "accountId": { "type": "string", "minLength": 1, "maxLength": 256, "description": "First Advantage account ID." } }, "required": [ "accountId" ], "additionalProperties": false }getPackage
readRetrieve one screening package and its screening components.
What you must provideaccountIdpackageIdInput schema
{ "type": "object", "properties": { "accountId": { "type": "string", "minLength": 1, "maxLength": 256, "description": "First Advantage account ID." }, "packageId": { "type": "string", "minLength": 1, "maxLength": 256, "description": "First Advantage package ID." } }, "required": [ "accountId", "packageId" ], "additionalProperties": false }getCandidate
readGet a candidate by ID with direct identifiers and contact fields redacted.
What you must provideidInput schema
{ "type": "object", "properties": { "id": { "type": "string", "minLength": 1, "maxLength": 256, "description": "First Advantage candidate ID." } }, "required": [ "id" ], "additionalProperties": false }getOrderStatus
readRetrieve the summary status for one existing screening order.
What you must provideidInput schema
{ "type": "object", "properties": { "id": { "type": "string", "minLength": 1, "maxLength": 256, "description": "First Advantage order ID." } }, "required": [ "id" ], "additionalProperties": false }getServiceInfo
readReturn static First Advantage connector capabilities, privacy controls, and API documentation.
Input schema
{ "type": "object", "properties": {}, "additionalProperties": false }
