TradesAPI

Real-time contractor license verification across 45 US states. Verifies license status, expiration, and disciplinary history directly against state licensing board portals.

contractor-license-mcp-server

Real-time contractor license verification across 45 US states. An MCP server that lets Claude Desktop, Cursor, and any MCP-compatible AI agent verify a contractor's license, status, expiration, and disciplinary history directly against state licensing board portals.

Send {state, license_number, trade} — get back validity, licensee name, expiration date, status, and any disciplinary actions on file. Results are fetched live from official state portals (no stale nightly exports) and cached for 24 hours when active.

Why this server

  • 45 states covered via official state licensing board portals, not third-party data aggregators
  • Live lookups — each verification hits the authoritative portal, so expirations and disciplinary actions are as fresh as the board's own data
  • Batch verification — up to 25 licenses per call, run in parallel
  • Disciplinary history — returned when the portal exposes it
  • Backed by TradesAPI, a hosted HTTP API you can also hit directly

Quick start

Claude Desktop

Add this to your Claude Desktop config:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "tradesapi": {
      "command": "npx",
      "args": ["-y", "contractor-license-mcp-server"],
      "env": {
        "CLV_API_URL": "https://www.tradesapi.com",
        "CLV_API_KEY": "your-api-key-here"
      }
    }
  }
}

Restart Claude Desktop after saving.

Getting an API key

  1. Go to www.tradesapi.com and click Sign up free
  2. Enter your email — you'll get a magic link
  3. Click the link and land on your dashboard, where your API key is waiting

New accounts start with 50 free verification credits, no credit card required. You can purchase additional credit packs from the dashboard when you need more.

Direct install

npm install -g contractor-license-mcp-server

Tools

clv_verify_license

Verify a single contractor license against a state licensing board portal.

ParameterRequiredDescription
stateyesTwo-letter state code (CA, TX, FL, ...)
license_numberyesThe license number to verify
tradenogeneral, electrical, plumbing, hvac, mechanical, residential, or home_inspection (defaults to general)
force_refreshnoBypass the 24h cache and re-fetch from the portal
response_formatnomarkdown (default) or json

Example result:

## License Verification: VALID

| Field      | Value                    |
|------------|--------------------------|
| Name       | ANDERSON, ORIN RAE       |
| License #  | TACLA00000103C           |
| State      | TX                       |
| Trade      | hvac                     |
| Status     | Active                   |
| Expiration | 05/12/2026               |

clv_batch_verify

Verify up to 25 licenses in a single call. Each verification runs independently — partial failures do not block the batch.

ParameterRequiredDescription
licensesyesArray of { state, license_number, trade } objects (1–25 items)
response_formatnomarkdown (default) or json

clv_list_supported_states

List all supported states, including portal URLs and available trades. Use this to see which states and trades you can query.

ParameterRequiredDescription
response_formatnomarkdown (default) or json

Supported states

CodeStateTrades
AKAlaskageneral, electrical, mechanical
ALAlabamageneral, electrical, plumbing, hvac, residential
ARArkansasgeneral
AZArizonageneral, electrical, plumbing, hvac
CACaliforniageneral, electrical, plumbing, hvac
COColoradoelectrical, plumbing
CTConnecticutgeneral, electrical, plumbing, hvac
DCDistrict of Columbiageneral
DEDelawareelectrical, plumbing, hvac
FLFloridageneral, electrical, plumbing, hvac
GAGeorgiageneral
HIHawaiigeneral
IAIowaelectrical
IDIdahoelectrical, plumbing, hvac
ILIllinoisgeneral, electrical, plumbing, hvac
INIndianaplumbing
KYKentuckygeneral, electrical, hvac, plumbing
LALouisianageneral
MAMassachusettsgeneral, mechanical
MDMarylandgeneral, hvac, electrical, plumbing
MEMaineelectrical, plumbing
MIMichiganelectrical, plumbing, hvac
MNMinnesotageneral, electrical, plumbing
MSMississippigeneral
NCNorth Carolinageneral
NDNorth Dakotageneral, electrical
NENebraskageneral, electrical
NHNew Hampshireelectrical, plumbing
NJNew Jerseygeneral, electrical, hvac, plumbing
NMNew Mexicogeneral, electrical, plumbing, hvac
NVNevadageneral, electrical, plumbing, hvac
NYNew Yorkhome_inspection
OHOhiogeneral, electrical, plumbing, hvac
OKOklahomaelectrical, plumbing, hvac
OROregongeneral
PAPennsylvaniageneral, electrical, hvac, plumbing
RIRhode Islandgeneral
SCSouth Carolinageneral, electrical, plumbing, hvac
TNTennesseegeneral, electrical, plumbing
TXTexashvac, electrical, plumbing
UTUtahgeneral, electrical, plumbing, hvac
VAVirginiageneral, electrical, plumbing, hvac
VTVermontelectrical, plumbing
WAWashingtongeneral
WVWest Virginiageneral, electrical, hvac, plumbing

Coverage expands continuously. Run clv_list_supported_states from your agent for the current list, or see the live state grid at www.tradesapi.com.

Configuration

VariableRequiredDescription
CLV_API_URLyesAPI backend URL (use https://www.tradesapi.com)
CLV_API_KEYyesYour API key from the dashboard

Credits

Each license verification consumes 1 credit, whether the result is fresh or cached. New accounts receive 50 free credits. Additional credit packs can be purchased from the dashboard at www.tradesapi.com.

Development

git clone https://github.com/Noquarter6/contractor-license-mcp-server.git
cd contractor-license-mcp-server
npm install
npm run build
npm test

License

MIT

Related Servers

NotebookLM Web Importer

Import web pages and YouTube videos to NotebookLM with one click. Trusted by 200,000+ users.

Install Chrome Extension