BizVerify MCP Server
OfficialCreates a Stripe checkout session to purchase additional credits for the BizVerify account.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@BizVerify MCP Serververify 'Stripe Inc' in Delaware"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
BizVerify MCP Server
KYB for AI agents — verify and search business entities across US state and international company registries, straight from any MCP client.
BizVerify confirms a company's legal existence, status, good standing, registered agent, officers, and filing history by reading official government business registries in real time.
The canonical BizVerify MCP server is hosted as a Streamable HTTP endpoint:
https://api.bizverify.co/mcpThis repository packages that server as a local stdio bridge (plus a Docker image) for MCP clients and sandboxes that expect a local process. The bridge is a thin transparent proxy — tool definitions and results come directly from the hosted server, so it never drifts out of sync.
Tools
Tool | Auth | What it does |
| – | Supported jurisdictions, credit pricing, packages, features |
| – | All jurisdictions with capabilities and active status |
| ✅ | Confirm a named business in one jurisdiction — existence, status, good standing (quick), plus entity type, formation date, registered agent, officers, principal address and filings (deep) |
| ✅ | Discover candidate businesses by name across one or all active jurisdictions |
| ✅ | Poll an async verification job (free) |
| ✅ | Retrieve cached entity data by ID (free) |
| ✅ | Historical verification snapshots for an entity |
| ✅ | Account details and credit balance |
| ✅ | Create a Stripe checkout session for more credits |
Tools marked ✅ require an API key (or OAuth token). get_config and list_jurisdictions are free and unauthenticated.
Related MCP server: ENTIA Entity Verification
Quick start
Option A — Hosted endpoint (recommended)
If your client supports remote MCP servers, just point it at https://api.bizverify.co/mcp and send your key as an X-API-Key header (OAuth 2.1 Bearer tokens are also accepted).
For stdio-only clients, bridge the hosted endpoint with mcp-remote:
{
"mcpServers": {
"bizverify": {
"command": "npx",
"args": [
"-y", "mcp-remote", "https://api.bizverify.co/mcp",
"--header", "X-API-Key:${BIZVERIFY_API_KEY}"
],
"env": { "BIZVERIFY_API_KEY": "your-api-key" }
}
}
}Option B — This bridge (from source)
git clone https://github.com/BizVerify/bizverify-mcp.git
cd bizverify-mcp
npm install
npm run buildThen register it with your client (Claude Desktop, Cursor, etc.):
{
"mcpServers": {
"bizverify": {
"command": "node",
"args": ["/absolute/path/to/bizverify-mcp/dist/index.js"],
"env": { "BIZVERIFY_API_KEY": "your-api-key" }
}
}
}Option C — Docker
docker build -t bizverify-mcp .
docker run -i --rm -e BIZVERIFY_API_KEY=your-api-key bizverify-mcp{
"mcpServers": {
"bizverify": {
"command": "docker",
"args": ["run", "-i", "--rm", "-e", "BIZVERIFY_API_KEY", "bizverify-mcp"],
"env": { "BIZVERIFY_API_KEY": "your-api-key" }
}
}
}Configuration
Env var | Required | Default | Description |
| For authenticated tools | – | Your BizVerify API key, sent as |
| No |
| Override the upstream MCP endpoint. |
Getting an API key
Create one in seconds — new accounts get 50 free credits:
# 1. Request an access code (sent by email)
curl -X POST https://api.bizverify.co/v1/auth/request-access \
-H 'Content-Type: application/json' \
-d '{"email":"you@example.com","accept_terms":true}'
# 2. Exchange the 6-digit code for an API key
curl -X POST https://api.bizverify.co/v1/auth/verify-access \
-H 'Content-Type: application/json' \
-d '{"email":"you@example.com","code":"123456","label":"mcp"}'See the setup guide and docs for full details.
Development
npm install
npm run build # compile to dist/
npm run typecheck # type-check only
npm start # run the stdio bridge
# Refresh the offline tool snapshot from the live endpoint
node scripts/gen-snapshot.mjsThe bundled src/tools-snapshot.ts is used only as an offline fallback for tools/list (e.g. during a sandboxed container check). Live calls always proxy to the hosted server.
Links
🌐 Website: https://bizverify.co
🔌 MCP setup guide: https://bizverify.co/mcp/
📚 Docs: https://docs.bizverify.co
🧩 Glama connector: https://glama.ai/mcp/connectors/co.bizverify/mcp
License
MIT © BizVerify
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityAmaintenanceProvides real-time company verification and corporate intelligence by accessing global registries like UK Companies House, Singapore ACRA, and OpenCorporates. It enables AI agents to perform KYC tasks, retrieve company profiles, and conduct automated risk assessments for due diligence workflows.Last updated351MIT
- AlicenseAqualityBmaintenanceStructured business intelligence for AI agents. 5.5M verified entities across 34 countries, 40.3M BORME mercantile acts, EU VAT validation, GLEIF, healthcare registries. 20 tools.Last updated61MIT

companieswiseofficial
AlicenseAqualityBmaintenanceProvides verified UK company lookup and number validation for AI agents using official Companies House data. Enables lookup of registered details by number, validation of company number format, and search by company name.Last updated355Apache 2.0- AlicenseAqualityCmaintenanceEnables AI agents to search and retrieve structured data from the German Commercial Register, including company details, filed documents, and shareholder lists.Last updated7Apache 2.0
Related MCP Connectors
US public-records intelligence for AI agents — companies, SEC, courts, spending, licenses.
European business verification for AI agents: registry, VAT, sanctions, IBAN. Pay-per-call x402.
Search companies, enrich contacts, and reveal emails and phones from your AI agent.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/BizVerify/bizverify-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server