npm license-verify-mcpstdioMITupdated 1mo ago
The only MCP-native license check that returns official SURETY BOND + INSURANCE from state data — not just active/inactive status. Pay-per-success: $0.03 full result, $0.01 status-only, FREE on a miss. WA live (official L&I), CA beta (CSLB).
license verify mcp 能做什么?
Contractor License + Bond + Insurance Verify (MCP, agent-payable)
The only MCP-native license check that returns official SURETY BOND + INSURANCE from state data — not just active/inactive status. Pay-per-success: $0.03 full result, $0.01 status-only, FREE on a miss. WA live (official L&I), CA beta (CSLB).
Tools: verify_license, list_supported_jurisdictions.
Quickstart
// Call
{ "tool": "verify_license", "jurisdiction": "WA", "license_number": "ECOSTSC758NN" }
// Response (abridged)
{
"found": true,
"result": {
"status": "active",
"bonded": { "is_bonded": true, "details": "Surety: NORTH RIVER INSURANCE COMPANY THE; Amount: $30,000" },
"insured": { "has_insurance": true, "details": "Carrier: State National Ins Co Inc; Coverage: $1,000,000" }
}
}
| Result | Price |
|---|---|
| Full (status + bond + insurance) | $0.03 |
Status-only (no bond/insurance match, or statusOnly: true) |
$0.01 |
Miss (found: false) |
FREE |
Jurisdictions
| State | Status | Source | Bond + Insurance |
|---|---|---|---|
| WA | ✅ Live | WA L&I open data (data.wa.gov) | ✅ Real data (bzff-4fmt + ciwg-agsx datasets) |
| CA | ⚠️ Beta | CSLB HTML (cslb.ca.gov) | ✅ Parsed when CSLB is up |
Washington is the reliable, production-ready jurisdiction. Official WA L&I open data is served via Socrata JSON — no scraping, no rate limits, bond and insurance data included from dedicated datasets.
California is beta. CSLB does not publish an open API; the provider fetches the HTML detail page directly. CSLB rate-limits or 503s automated requests intermittently. When unavailable, verify_license returns a clean SESSION_ERROR — you are never charged on source failures. Do not rely on CA for production workflows until a stable server-side CSLB run is confirmed.
Apify Actor
Agentic-payments eligible — pay-per-event pricing + limited permissions + no Standby mode.
Pricing
| Event | Price |
|---|---|
license-verification |
$0.03 — full result (status + bond + insurance) |
status-only-result |
$0.01 — status found, no bond/insurance match (or statusOnly: true) |
Charged only on found: true. Validation errors, not-found results, and source failures are not charged.
Input
{
"jurisdiction": "WA",
"license_number": "ECOSTSC758NN"
}
| Field | Type | Required | Notes |
|---|---|---|---|
jurisdiction |
"WA" | "CA" |
✅ | WA = live; CA = beta |
license_number |
string | one of ↓ | WA: alphanumeric. CA: numeric, ≤8 digits |
business_name |
string | one of ↑ | WA only. Partial match, may return matches[] |
Output (default dataset)
{
"found": true,
"jurisdiction": "WA",
"query": { "license_number": "ECOSTSC758NN" },
"result": {
"license_number": "ECOSTSC758NN",
"business_name": "!ECO STAR C G CONSTRUCTION LLC",
"status": "active",
"license_type": "CONSTRUCTION CONTRACTOR",
"bonded": {
"is_bonded": true,
"details": "Surety: NORTH RIVER INSURANCE COMPANY THE; Bond #: 46CF842686; Amount: $30,000; Effective: 2025-08-05; Expires: Until Canceled"
},
"insured": {
"has_insurance": true,
"details": "Carrier: State National Ins Co Inc; Policy: NXT9PTHTLT-01-GL; Coverage: $1,000,000; Agency: Next Insurance Inc; Effective: 2026-06-12; Expires: 2027-06-12"
},
"effective_date": "2025-08-15",
"expiration_date": "2027-08-15"
},
"source_url": "https://data.wa.gov/resource/m8qx-ubtq",
"retrieved_at": "2026-06-26T01:34:37.598Z",
"raw": { ... }
}
status is always one of: active | expired | suspended | revoked | unknown.
On failure: { "found": false, "error": "SESSION_ERROR|NETWORK_ERROR|...", "message": "..." } — never a crash, never a charge.
Local test
npm install
npm run build
echo '{"jurisdiction":"WA","license_number":"ECOSTSC758NN"}' \
> storage/key_value_stores/default/INPUT.json
npx apify run
MCP Server (stdio)
For use with Claude Desktop, Smithery, or any MCP-compatible agent.
Tools
verify_license — verify a contractor's license status.
jurisdiction(required):"WA"or"CA"license_numberand/orbusiness_name(at least one required)
list_supported_jurisdictions — list all states with their status and data source.
Config (Claude Desktop)
{
"mcpServers": {
"license-verify": {
"command": "node",
"args": ["/absolute/path/to/license-verify-mcp/dist/index.js"]
}
}
}
Run
npm install && npm run build
npm run start:mcp # stdio MCP server
npm run smoke # hit real WA + CA endpoints, must be 8/8 PASS
Adding a State
- Create
src/providers/<CODE>.tsimplementing theProviderinterface ({ info, verify() }) - Register it in
src/providers/index.ts
No other changes needed in server or Actor.
License
MIT
安装
把 license verify mcp 添加到你的客户端。选择你正在使用的那个。
claude mcp add license-verify-mcp -- npx -y license-verify-mcpcodex mcp add license-verify-mcp -- npx -y license-verify-mcpamp mcp add license-verify-mcp -- npx -y license-verify-mcp{
"mcpServers": {
"license-verify-mcp": {
"command": "npx",
"args": [
"-y",
"license-verify-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"license-verify-mcp": {
"command": "npx",
"args": [
"-y",
"license-verify-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"license-verify-mcp","command":"npx","args":["-y","license-verify-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"license-verify-mcp": {
"command": "npx",
"args": [
"-y",
"license-verify-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"license-verify-mcp": {
"command": "npx",
"args": [
"-y",
"license-verify-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"license-verify-mcp": {
"command": "npx",
"args": [
"-y",
"license-verify-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"license-verify-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"license-verify-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"license-verify-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"license-verify-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y license-verify-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
1 个工具
license verify mcp 向已连接的智能体提供 1 个工具。
- license_number
- and/or `business_name` (at least one required)
评分
76 / 100
良好
- 文档25/25
- 维护22/25
- 可信度13/20
- 能力4/15
- 安装体验12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 40 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 1 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
版本历史
| 版本 | 发布于 |
|---|---|
| 0.1.3最新 | 2026年7月23日 |
| 0.1.2 | 2026年6月29日 |
| 0.1.1 | 2026年6月26日 |