npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

contractor-license-mcp-server

v0.5.0

Published

MCP server for contractor license verification — verify licenses across US state licensing portals via AI agents like Claude Desktop

Readme

contractor-license-mcp-server

An MCP server for verifying US contractor licenses. Send a license number, state, and trade -- get back validity, expiration, status, and disciplinary history. Works with Claude Desktop and any MCP-compatible AI agent.

Currently supports Texas (TDLR), California (CSLB), and Florida (DBPR), with more states coming.

Quick Start

Claude Desktop

Add this to your Claude Desktop config file:

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

Restart Claude Desktop after saving the config.

Getting an API Key

New accounts start with 50 free verification credits. To get your API key:

  1. Visit the billing portal to create an account
  2. Your API key will be provided on signup
  3. Need more credits? Purchase additional packs at the same billing portal

Direct Install

npm install -g contractor-license-mcp-server

Available Tools

clv_verify_license

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

Parameters:

| Name | Required | Description | |------|----------|-------------| | state | Yes | Two-letter state code (e.g. CA, TX, FL) | | license_number | Yes | The license number to verify | | trade | No | Trade type (default: general) | | force_refresh | No | Bypass cache for fresh data (default: false) | | response_format | No | markdown or json (default: markdown) |

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 license is verified independently -- partial failures do not block the batch.

Parameters:

| Name | Required | Description | |------|----------|-------------| | licenses | Yes | Array of { state, license_number, trade } objects (1-25 items) | | response_format | No | markdown or json (default: markdown) |

clv_list_supported_states

List all states currently supported for verification, including portal URLs and available trades.

Parameters:

| Name | Required | Description | |------|----------|-------------| | response_format | No | markdown or json (default: markdown) |

Supported States

| Code | State | Portal | Trades | |------|------------|--------|---------------------| | TX | Texas | TDLR | hvac, electrical | | CA | California | CSLB | general | | FL | Florida | DBPR | general |

More states are being added. Run clv_list_supported_states for the latest list.

Configuration

| Variable | Required | Description | |----------|----------|-------------| | CLV_API_URL | Yes | API backend URL | | CLV_API_KEY | Yes | Your API key |

Credits

Each license verification consumes 1 credit (including cached results). New accounts receive 50 free credits. Purchase additional credit packs via POST /billing/checkout with your API key.

Development

git clone https://github.com/jackunderwood/Contractor-License-Verification.git
cd Contractor-License-Verification/mcp-server
npm install
npm run build
npm test

License

MIT