Check a US insurance carrier before accepting a certificate of insurance
Check a US insurance carrier before accepting a certificate of insurance. Given an NAIC number or carrier name plus a state, returns recognition status, financial-strength rating, and whether it meets a minimum threshold. Use when validating vendor or subcontractor insurance at onboarding, renewal, or compliance review. Carrier data is a curated seed dataset; each response reports its status. Responses are Ed25519-signed and independently verifiable. Pay per call in USDC, no account needed.
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://coverbureau.com/mcp
| Category | Company and compliance |
|---|---|
| Provider host | coverbureau.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 2 from 2 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.01 | 366 ms |
Example input (from the provider)
{
"body": {
"id": 1,
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"arguments": {
"carrierName": "Federal Insurance Company",
"state": "NY"
},
"name": "check_carrier"
}
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {}
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}