API access
Your AI client reaches GoodHire 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 (Basic auth).
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 GoodHire 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.
getEmployer
readRetrieve an employer by its partner employer ID.
What you must providepartnerEmployerIdInput schema
{ "type": "object", "properties": { "partnerEmployerId": { "type": "string", "minLength": 1, "maxLength": 256, "description": "Partner employer ID." } }, "required": [ "partnerEmployerId" ], "additionalProperties": false }getRequestor
readRetrieve a requestor/customer under a partner employer.
What you must providepartnerEmployerIdpartnerCustomerIdInput schema
{ "type": "object", "properties": { "partnerEmployerId": { "type": "string", "minLength": 1, "maxLength": 256, "description": "Partner employer ID." }, "partnerCustomerId": { "type": "string", "minLength": 1, "maxLength": 256, "description": "Partner customer ID." } }, "required": [ "partnerEmployerId", "partnerCustomerId" ], "additionalProperties": false }listProductBundles
readList GoodHire product bundles available to a requestor.
What you must providepartnerEmployerIdpartnerCustomerIdInput schema
{ "type": "object", "properties": { "partnerEmployerId": { "type": "string", "minLength": 1, "maxLength": 256, "description": "Partner employer ID." }, "partnerCustomerId": { "type": "string", "minLength": 1, "maxLength": 256, "description": "Partner customer ID." } }, "required": [ "partnerEmployerId", "partnerCustomerId" ], "additionalProperties": false }getReportStatus
readRetrieve an existing report/order status without including report data.
What you must providepartnerEmployerIdpartnerCustomerIdpartnerOrderIdInput schema
{ "type": "object", "properties": { "partnerEmployerId": { "type": "string", "minLength": 1, "maxLength": 256, "description": "Partner employer ID." }, "partnerCustomerId": { "type": "string", "minLength": 1, "maxLength": 256, "description": "Partner customer ID." }, "partnerOrderId": { "type": "string", "minLength": 1, "maxLength": 256, "description": "Partner order ID." } }, "required": [ "partnerEmployerId", "partnerCustomerId", "partnerOrderId" ], "additionalProperties": false }getReportData
readGet report data with PII, documents, and privileged links redacted.
What you must providepartnerEmployerIdpartnerCustomerIdpartnerOrderIdInput schema
{ "type": "object", "properties": { "partnerEmployerId": { "type": "string", "minLength": 1, "maxLength": 256, "description": "Partner employer ID." }, "partnerCustomerId": { "type": "string", "minLength": 1, "maxLength": 256, "description": "Partner customer ID." }, "partnerOrderId": { "type": "string", "minLength": 1, "maxLength": 256, "description": "Partner order ID." } }, "required": [ "partnerEmployerId", "partnerCustomerId", "partnerOrderId" ], "additionalProperties": false }getServiceInfo
readReturn static GoodHire connector capabilities, privacy controls, and API documentation.
Input schema
{ "type": "object", "properties": {}, "additionalProperties": false }
