Scheduled maintenance: TradeProof will undergo a planned infrastructure upgrade from Saturday, August 1 at 11:59 PM to Sunday, August 2 at 6:00 AM ET. Brief service interruptions may occur during this window. For assistance, contact admin@tradeproof.net.
Skip to main content

How to Check Contractor Licenses with AI

General contractors spend hours every week manually checking subcontractor licenses. Open a state website, enter a license number, wait for results, copy to a spreadsheet, repeat fifty times. For a GC managing dozens of subs across multiple states, this eats entire afternoons.

What if you could just ask and get the answer?

That's now possible. TradeProof's MCP server connects directly to Claude AI, giving you instant access to 5 million+ official contractor license records across all 50 US states — without leaving your conversation.

What is MCP?

MCP (Model Context Protocol) is an open standard created by Anthropic that lets AI assistants connect to external tools and data sources. Think of it like a USB port for AI — plug in a data source, and the AI can use it natively.

TradeProof built an MCP server that gives Claude access to official state licensing board data. When you ask Claude about a contractor, it calls TradeProof's API behind the scenes and returns structured results — license status, business name, classifications, expiration dates, workers' comp coverage, and more.

What You Can Do

The TradeProof MCP server provides five tools that Claude can use:

lookup_license

lookup_license

Look up a specific contractor license by state and number.

"Look up Florida contractor license CGC061473"

search_contractors

Search for contractors by business name across any state.

"Find licensed electricians named Smith in Texas"

check_batch

Check up to 100 contractor licenses at once.

"Check if these 10 subcontractor licenses are active"

check_insurance

Look up workers' compensation insurance coverage by employer and state.

"Does Acme Roofing have workers' comp in California?"

get_coverage_info

See which states have license and insurance data. Free — no quota cost.

"What states does TradeProof cover?"

How to Set It Up

Setup takes under 2 minutes. You need Node.js 18+ and a free TradeProof API key.

Step 1: Get Your API Key

  1. Go to tradeproof.net and create a free account
  2. Navigate to Settings
  3. Click Create API Key and copy it

Step 2: Add to Claude Desktop

Open your Claude Desktop config file:

Add the TradeProof server:

{
  "mcpServers": {
    "tradeproof": {
      "command": "npx",
      "args": ["-y", "@tradeproof/mcp-server"],
      "env": {
        "TRADEPROOF_API_KEY": "your_key_here"
      }
    }
  }
}

Fully quit and restart Claude Desktop. That's it.

Step 3: Add to Claude Code

claude mcp add --transport stdio \
  --env TRADEPROOF_API_KEY=your_key_here \
  tradeproof -- npx -y @tradeproof/mcp-server

Tip: On Windows, if npx isn't found, use "command": "cmd" with "args": ["/c", "npx", "-y", "@tradeproof/mcp-server"] in the config.

Real Example

Once connected, you can ask Claude anything about contractor licenses in plain English:

You: "Is ABC Construction licensed in Florida?"

Claude: "Yes. ABC Construction LLC holds an active Certified General Contractor license (CGC061473) in Florida. Status: Current. Expires: August 31, 2026. City: Delray Beach, FL. Data sourced from Florida DBPR licensing board records."

No manual lookup. No state website. No spreadsheet. Just ask.

Batch Checking: The Power Feature

The real time-saver is batch checking. Paste a list of up to 100 subcontractor licenses and Claude checks them all at once:

You: "Check if these subcontractors are licensed: FL CGC061473, CA B-1234567, TX 12345"

Claude returns a summary — "2 of 3 active" — plus details on each one. For a GC onboarding subs for a new project, this turns a 2-hour task into a 10-second conversation.

Where the Data Comes From

TradeProof sources all license data from official state licensing board databases — the same government systems contractors use to file and renew their licenses. This is not self-reported data, uploaded PDFs, or third-party aggregations.

The database currently includes:

Pricing

TradeProof's MCP server uses your API key quota. The free tier includes 25 lookups per month — enough to test and evaluate.

The get_coverage_info tool is always free and doesn't count against your quota.

Try It Free

25 lookups/month. No credit card. Set up in under 2 minutes.

Get Your Free API Key

Frequently Asked Questions

Can I use AI to check contractor licenses?

Yes. TradeProof's MCP server connects to Claude AI (Desktop, Code, and Cowork), letting you look up contractor licenses across all 50 US states by asking in natural language. The data comes from official state licensing board databases.

What is an MCP server?

MCP (Model Context Protocol) is an open standard that lets AI assistants like Claude connect to external data sources. TradeProof's MCP server gives Claude access to 5 million+ contractor license records from official state databases.

Is TradeProof free to use?

TradeProof offers a free tier with 25 lookups per month. No credit card required. Paid plans start at $99/month for 1,000 lookups.

What states does TradeProof cover?

TradeProof covers all 50 US states plus Washington, DC, with over 5 million license records sourced directly from official state licensing board databases.

How do I set up TradeProof with Claude?

Install the MCP server with one command: npx -y @tradeproof/mcp-server. Then add it to your Claude Desktop config with your free API key from tradeproof.net. The full setup takes under 2 minutes.

Resources