MCP Marketplace
BrowseHow It WorksFor CreatorsDocs
Sign inSign up
MCP Marketplace

The curated, security-first marketplace for AI tools.

Product

Browse ToolsSubmit a ToolDocumentationHow It WorksBlogFAQ

Legal

Terms of ServicePrivacy PolicyCommunity Guidelines

Connect

support@mcp-marketplace.ioTwitter / XDiscord

MCP Marketplace © 2026. All rights reserved.

Back to Browse

Contractor License MCP Server

by Noquarter6
Developer ToolsModerate7.5MCP RegistryLocalRemote
Free

Server data from the Official MCP Registry

Verify contractor licenses: 50 states + DC + 8 cities — status, expiration, disciplinary history.

About

Verify contractor licenses: 50 states + DC + 8 cities — status, expiration, disciplinary history.

Remote endpoints: streamable-http: https://www.tradesapi.com/mcp

Security Report

7.5
Moderate7.5Low Risk

Valid MCP server (4 strong, 1 medium validity signals). 5 known CVEs in dependencies Package registry verified. Imported from the Official MCP Registry.

7 files analyzed · 6 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

env_vars

Check that this permission is expected for this type of plugin.

database

Check that this permission is expected for this type of plugin.

HTTP Network Access

Connects to external APIs or services over the internet.

What You'll Need

Set these up before or after installing:

TradesAPI backend URL. Use https://www.tradesapi.com unless you have a reason to override.Optional

Environment variable: CLV_API_URL

Your TradesAPI key. Get one free at https://www.tradesapi.com (50 credits, no credit card).Required

Environment variable: CLV_API_KEY

How to Install & Connect

Available as Local & Remote

This plugin can run on your machine or connect to a hosted endpoint. during install.

Documentation

View on GitHub

From the project's GitHub README.

contractor-license-mcp-server

Real-time contractor license verification across all 50 US states + DC, plus 8 major-city contractor licensing portals (Chicago, NYC, Philadelphia, Detroit, Atlanta, Dallas, Las Vegas, Nashville). An MCP server that lets Claude Desktop, Claude Code, Cursor, Windsurf, and any MCP-compatible AI agent verify a contractor's license, status, expiration, and disciplinary history directly against 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

  • All 50 US states + DC + 8 major cities covered via official 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

Hosted (recommended)

No install required. 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": {
      "type": "streamable-http",
      "url": "https://www.tradesapi.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Replace YOUR_API_KEY with the key from your dashboard and restart Claude Desktop.

Local install (alternative)

If you prefer to run the MCP server locally via stdio:

{
  "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

verify_license

Verify a single contractor license against the official state (or city) licensing portal.

ParameterRequiredDescription
stateyesTwo-letter state code (CA, TX, FL, ...)
citynoOptional city slug to target a municipal portal: chicago, nyc, philadelphia, detroit, atlanta, dallas, lasvegas, nashville. Lowercase, no spaces.
license_numberyesThe license number to verify
tradenogeneral, electrical, plumbing, hvac, mechanical, roofing, residential, ... (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               |

batch_verify

Verify up to 25 licenses in a single call. Each verification runs independently — partial failures do not block the batch. Per-item city is supported.

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

search_by_name

Fuzzy-match contractors by business or individual name within a single state (or city) database. Costs 2 credits per call.

ParameterRequiredDescription
stateyesTwo-letter state code
citynoOptional city slug for municipal databases
nameyesBusiness or individual name (case-insensitive, partial-match tolerant)
tradenoTrade filter
limitnoMax results (1–50, default 20)
response_formatnomarkdown (default) or json

Not every state portal supports name search — call list_supported_states and check supports_name_search per jurisdiction first.

list_supported_states

List every supported jurisdiction with portal URLs, current health, available trades, and registered municipal scrapers nested under each state. Use this to discover what's reachable before constructing other tool calls.

ParameterRequiredDescription
response_formatnomarkdown (default) or json

Coverage

All 50 US states + DC at the state level, plus 8 major-city contractor licensing portals (Chicago, NYC, Philadelphia, Detroit, Atlanta, Dallas, Las Vegas, Nashville).

Run list_supported_states from your agent for the live, fetched-fresh-each-call list of supported jurisdictions, available trades per jurisdiction, current portal health, and which states support name search. The MCP package no longer bundles a static state table — what comes back from list_supported_states is always current with prod.

You can also 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/jackunderwood/Contractor-License-Verification.git
cd Contractor-License-Verification/mcp-server
npm install
npm run build
npm test

License

MIT

Reviews

No reviews yet

Be the first to review this server!

0

installs

New

no ratings yet

Is this your server?

Claim ownership to manage your listing, respond to reviews, and track installs from your dashboard.

Claim with GitHub

Sign up with the GitHub account that owns this repo

Links

Source CodeDocumentationnpm PackageRemote Endpoint

Details

Published April 9, 2026
Version 0.8.0
0 installs
Local & Remote Plugin

More Developer Tools MCP Servers

Fetch

Free

by Modelcontextprotocol · Developer Tools

Web content fetching and conversion for efficient LLM usage

80.0K
Stars
4
Installs
5.3
Security
No ratings yet
Local

Toleno

Free

by Toleno · Developer Tools

Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.

137
Stars
519
Installs
8.0
Security
4.8
Local

mcp-creator-python

Free

by mcp-marketplace · Developer Tools

Create, build, and publish Python MCP servers to PyPI — conversationally.

-
Stars
72
Installs
10.0
Security
4.6
Local

MarkItDown

Free

by Microsoft · Content & Media

Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption

156.1K
Stars
35
Installs
6.0
Security
5.0
Local

FinAgent

Free

by mcp-marketplace · Finance

Free stock data and market news for any MCP-compatible AI assistant.

-
Stars
20
Installs
10.0
Security
No ratings yet
Local

mcp-creator-typescript

Free

by mcp-marketplace · Developer Tools

Scaffold, build, and publish TypeScript MCP servers to npm — conversationally

-
Stars
18
Installs
10.0
Security
5.0
Local