co.bizverify/mcp
Official9 toolsby BizVerify · TypeScript
BizVerify
KYB for AI agents: verify business registrations from MCP clients.
Verify business registrations and KYB compliance for AI agents.
Captured live from the server via tools/list.
get_config
Returns BizVerify's public configuration as readable text: active US and international jurisdictions, per-operation credit costs, the free-tier allowance, credit packages with pricing, feature flags, and documentation/legal links. Free and requires no authentication. Call this first to discover what jurisdictions are supported and what each operation costs before verifying.
No parameters.
list_jurisdictions
Lists every registered jurisdiction with its code, active/inactive status, and supported capabilities — search, entity lookup, quick verification, and deep verification. Free and requires no authentication. Use it to confirm a state or country is supported and which verification tiers it offers before calling verify_business or search_entities.
No parameters.
verify_business
Confirm a specific, named business in one jurisdiction — the PRIMARY tool whenever the user wants to verify, check, confirm, or look up a company's existence, status, good standing, or details (e.g. "verify Acme LLC in Delaware", "is Acme registered in FL?", "I need to verify a company in Delaware"). If the user has verification intent but has not given the exact company name, ASK them for the name and use THIS tool — do NOT fall back to search_entities. Two tiers: quick (1 credit) returns existence + status + good-standing. Deep (15 credits, or 25 with force_refresh) adds entity type, formation date, registered agent, officers, principal address, and filing history. Deep is available in a subset of jurisdictions; requesting deep where unavailable returns a quick result with a reason. Requires authentication; deducts credits only on a successful match.
Parameters (6)
- entity_namestringrequired
Business entity name to verify
- jurisdictionstringrequired
Jurisdiction code or name (e.g., "us-fl", "Florida", "FL")
- entity_typestring
Optional entity type filter to narrow results
- levelstring
Verification tier: quick (1 credit, always available) or deep (15 credits, availability varies by jurisdiction)
- force_refreshboolean
Return the most current result instead of a previously stored one. Applies to the deep tier only (adds 10 credits); ignored on quick.
- webhook_urlstring
URL to receive async results. Must be a publicly reachable http(s) URL.
search_entities
Discover candidate businesses when the exact entity is UNKNOWN — a listing/discovery tool, NOT a verification tool. Use only when the user wants to browse or list multiple companies matching a partial or fuzzy name, or does not yet know which specific entity they mean. If the user can name one specific company they want to confirm or check, use verify_business instead (ask them for the name first if needed). Costs 2 credits per jurisdiction searched and requires authentication.
Parameters (5)
- querystringrequired
Business name search query
- jurisdictionstring
Jurisdiction code or name (omit to search all active)
- entity_typestring
Filter by entity type
- limitinteger
Maximum number of results to return (1-200, default 50)
- offsetinteger
Number of results to skip for pagination (default 0)
check_job_status
Poll a long-running (async) verification job created by verify_business. Returns the full verification result once complete, a failure reason if it failed, or a "still processing" status to poll again. Free — no credits charged — but requires authentication. Pass the job_id from the verify_business async response.
Parameters (1)
- job_idstringrequired
Job ID returned by verify_business when it runs asynchronously
get_entity
Fetch a previously verified business entity from BizVerify's cache by its ID — returns name, jurisdiction, status, type, good-standing, formation date, registered agent, and the number of snapshots on record. Free and read-only; does NOT fetch a fresh live result (use verify_business with force_refresh for live data). Requires authentication. Pass an entity_id returned by a prior verify_business or search_entities call.
Parameters (1)
- entity_idstringrequired
Entity ID returned by a prior verify_business or search_entities result
get_entity_history
Returns the chronological verification snapshots recorded for an entity — each with a timestamp, name, and status — newest first, with pagination. Costs 5 credits and requires authentication. Use it to see how a company's status or details have changed over time.
Parameters (3)
- entity_idstringrequired
Entity ID to retrieve history for
- limitinteger
Maximum number of history snapshots to return (1-100, default 10)
- offsetinteger
Number of snapshots to skip for pagination (default 0)
get_account
Returns your BizVerify account summary: email and verification status, plan, current credit balance, member-since date, and your active and revoked API keys. Free and read-only; requires authentication. Use it to check your remaining credit balance before running paid verifications.
No parameters.
purchase_credits
Starts a credit purchase: creates a Stripe checkout session for the chosen package and returns a payment URL to present to the user. Does NOT charge immediately and does NOT add credits until the user completes payment — credits are then added automatically. Requires authentication. Packages: credits_100, credits_500, credits_2000, credits_10000 (see get_config for current prices).
Parameters (1)
- package_idstringrequired
Credit package to purchase: credits_100, credits_500, credits_2000, or credits_10000
README not available yet.
Install
claude_desktop_config.json
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://api.bizverify.co/mcp"
]
}
}
}Desktop config is stdio-only; this bridges via mcp-remote. Native remote: Settings > Connectors.