contractor-license-mcp-server 0.3.0 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/tools/states.js +47 -114
- package/package.json +1 -1
package/dist/tools/states.js
CHANGED
|
@@ -1,119 +1,52 @@
|
|
|
1
1
|
import { formatStatesList } from "../format.js";
|
|
2
|
-
// Hardcoded until backend exposes a /states endpoint
|
|
3
|
-
//
|
|
2
|
+
// Hardcoded until backend exposes a /states endpoint.
|
|
3
|
+
// Last updated: 2026-03-27 — 43 working states.
|
|
4
4
|
const SUPPORTED_STATES = [
|
|
5
|
-
{
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
},
|
|
12
|
-
{
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
},
|
|
19
|
-
{
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
},
|
|
33
|
-
{
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
},
|
|
40
|
-
{
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
portal: "https://www.msboc.us/",
|
|
51
|
-
status: "healthy",
|
|
52
|
-
trades: ["general"],
|
|
53
|
-
},
|
|
54
|
-
{
|
|
55
|
-
code: "NC",
|
|
56
|
-
name: "North Carolina",
|
|
57
|
-
portal: "https://www.nclbgc.org/",
|
|
58
|
-
status: "healthy",
|
|
59
|
-
trades: ["general"],
|
|
60
|
-
},
|
|
61
|
-
{
|
|
62
|
-
code: "NJ",
|
|
63
|
-
name: "New Jersey",
|
|
64
|
-
portal: "https://newjersey.mylicense.com/verification/",
|
|
65
|
-
status: "healthy",
|
|
66
|
-
trades: ["general"],
|
|
67
|
-
},
|
|
68
|
-
{
|
|
69
|
-
code: "NY",
|
|
70
|
-
name: "New York",
|
|
71
|
-
portal: "https://www.dos.ny.gov/licensing/",
|
|
72
|
-
status: "degraded",
|
|
73
|
-
trades: ["general"],
|
|
74
|
-
},
|
|
75
|
-
{
|
|
76
|
-
code: "OH",
|
|
77
|
-
name: "Ohio",
|
|
78
|
-
portal: "https://elicense.ohio.gov/",
|
|
79
|
-
status: "healthy",
|
|
80
|
-
trades: ["general"],
|
|
81
|
-
},
|
|
82
|
-
{
|
|
83
|
-
code: "OK",
|
|
84
|
-
name: "Oklahoma",
|
|
85
|
-
portal: "https://www.ok.gov/cib/",
|
|
86
|
-
status: "healthy",
|
|
87
|
-
trades: ["general"],
|
|
88
|
-
},
|
|
89
|
-
{
|
|
90
|
-
code: "PA",
|
|
91
|
-
name: "Pennsylvania",
|
|
92
|
-
portal: "https://www.pals.pa.gov/",
|
|
93
|
-
status: "degraded",
|
|
94
|
-
trades: ["general"],
|
|
95
|
-
},
|
|
96
|
-
{
|
|
97
|
-
code: "RI",
|
|
98
|
-
name: "Rhode Island",
|
|
99
|
-
portal: "https://www.crb.ri.gov/",
|
|
100
|
-
status: "healthy",
|
|
101
|
-
trades: ["general"],
|
|
102
|
-
},
|
|
103
|
-
{
|
|
104
|
-
code: "TX",
|
|
105
|
-
name: "Texas",
|
|
106
|
-
portal: "https://www.tdlr.texas.gov/LicenseSearch/",
|
|
107
|
-
status: "healthy",
|
|
108
|
-
trades: ["hvac", "electrical"],
|
|
109
|
-
},
|
|
110
|
-
{
|
|
111
|
-
code: "WA",
|
|
112
|
-
name: "Washington",
|
|
113
|
-
portal: "https://secure.lni.wa.gov/verify/",
|
|
114
|
-
status: "healthy",
|
|
115
|
-
trades: ["general"],
|
|
116
|
-
},
|
|
5
|
+
{ code: "AK", name: "Alaska", portal: "https://www.commerce.alaska.gov/", status: "healthy", trades: ["general", "electrical", "mechanical"] },
|
|
6
|
+
{ code: "AL", name: "Alabama", portal: "https://genconbd.alabama.gov/", status: "healthy", trades: ["general", "electrical", "plumbing", "hvac", "residential"] },
|
|
7
|
+
{ code: "AR", name: "Arkansas", portal: "https://www.aclb.arkansas.gov/", status: "healthy", trades: ["general"] },
|
|
8
|
+
{ code: "AZ", name: "Arizona", portal: "https://azroc.my.site.com/AZRoc/s/contractor-search", status: "healthy", trades: ["general", "electrical", "plumbing", "hvac"] },
|
|
9
|
+
{ code: "CA", name: "California", portal: "https://www.cslb.ca.gov/onlineservices/checkalicense/", status: "healthy", trades: ["general", "electrical", "plumbing", "hvac"] },
|
|
10
|
+
{ code: "CO", name: "Colorado", portal: "https://apps2.colorado.gov/dora/licensing/lookup/", status: "healthy", trades: ["electrical", "plumbing"] },
|
|
11
|
+
{ code: "CT", name: "Connecticut", portal: "https://elicense.ct.gov/", status: "healthy", trades: ["general", "electrical", "plumbing", "hvac"] },
|
|
12
|
+
{ code: "DC", name: "District of Columbia", portal: "https://dcra.dc.gov/", status: "healthy", trades: ["general"] },
|
|
13
|
+
{ code: "DE", name: "Delaware", portal: "https://delpros.delaware.gov/", status: "healthy", trades: ["electrical", "plumbing", "hvac"] },
|
|
14
|
+
{ code: "FL", name: "Florida", portal: "https://www.myfloridalicense.com/wl11.asp", status: "healthy", trades: ["general", "electrical", "plumbing", "hvac"] },
|
|
15
|
+
{ code: "GA", name: "Georgia", portal: "https://goals.sos.ga.gov/", status: "degraded", trades: ["general"] },
|
|
16
|
+
{ code: "HI", name: "Hawaii", portal: "https://mypvl.dcca.hawaii.gov/", status: "healthy", trades: ["general"] },
|
|
17
|
+
{ code: "IA", name: "Iowa", portal: "https://dps-eeb.my.site.com/", status: "healthy", trades: ["electrical"] },
|
|
18
|
+
{ code: "ID", name: "Idaho", portal: "https://dopl.idaho.gov/", status: "healthy", trades: ["electrical", "plumbing", "hvac"] },
|
|
19
|
+
{ code: "IL", name: "Illinois", portal: "https://idfpr.illinois.gov/", status: "healthy", trades: ["general", "electrical", "plumbing", "hvac"] },
|
|
20
|
+
{ code: "IN", name: "Indiana", portal: "https://mylicense.in.gov/", status: "healthy", trades: ["plumbing"] },
|
|
21
|
+
{ code: "KY", name: "Kentucky", portal: "https://dhbc.ky.gov/", status: "healthy", trades: ["general", "electrical", "hvac", "plumbing"] },
|
|
22
|
+
{ code: "LA", name: "Louisiana", portal: "https://arlspublic.lslbc.louisiana.gov/", status: "healthy", trades: ["general"] },
|
|
23
|
+
{ code: "MA", name: "Massachusetts", portal: "https://www.mass.gov/", status: "healthy", trades: ["general", "mechanical"] },
|
|
24
|
+
{ code: "MD", name: "Maryland", portal: "https://labor.maryland.gov/", status: "healthy", trades: ["general", "hvac", "electrical", "plumbing"] },
|
|
25
|
+
{ code: "ME", name: "Maine", portal: "https://pfr.maine.gov/", status: "healthy", trades: ["electrical", "plumbing"] },
|
|
26
|
+
{ code: "MI", name: "Michigan", portal: "https://aca-prod.accela.com/LARA/", status: "healthy", trades: ["electrical", "plumbing", "hvac"] },
|
|
27
|
+
{ code: "MN", name: "Minnesota", portal: "https://ims.dli.mn.gov/", status: "healthy", trades: ["general", "electrical", "plumbing"] },
|
|
28
|
+
{ code: "MS", name: "Mississippi", portal: "https://www.msboc.us/", status: "healthy", trades: ["general"] },
|
|
29
|
+
{ code: "NC", name: "North Carolina", portal: "https://www.nclbgc.org/", status: "healthy", trades: ["general"] },
|
|
30
|
+
{ code: "ND", name: "North Dakota", portal: "https://firststop.sos.nd.gov/", status: "healthy", trades: ["general", "electrical"] },
|
|
31
|
+
{ code: "NE", name: "Nebraska", portal: "https://dol.nebraska.gov/conreg/", status: "healthy", trades: ["general", "electrical"] },
|
|
32
|
+
{ code: "NH", name: "New Hampshire", portal: "https://forms.nh.gov/licenseverification/", status: "healthy", trades: ["electrical", "plumbing"] },
|
|
33
|
+
{ code: "NJ", name: "New Jersey", portal: "https://newjersey.mylicense.com/verification/", status: "healthy", trades: ["general", "electrical", "hvac", "plumbing"] },
|
|
34
|
+
{ code: "NM", name: "New Mexico", portal: "https://public.psiexams.com/search.jsp", status: "healthy", trades: ["general", "electrical", "plumbing", "hvac"] },
|
|
35
|
+
{ code: "NV", name: "Nevada", portal: "https://app.nvcontractorsboard.com/", status: "healthy", trades: ["general", "electrical", "plumbing", "hvac"] },
|
|
36
|
+
{ code: "NY", name: "New York", portal: "https://www.dos.ny.gov/licensing/", status: "healthy", trades: ["home_inspection"] },
|
|
37
|
+
{ code: "OH", name: "Ohio", portal: "https://elicense.ohio.gov/", status: "healthy", trades: ["general", "electrical", "plumbing", "hvac"] },
|
|
38
|
+
{ code: "OK", name: "Oklahoma", portal: "https://www.ok.gov/cib/", status: "healthy", trades: ["electrical", "plumbing", "hvac"] },
|
|
39
|
+
{ code: "OR", name: "Oregon", portal: "https://search.ccb.state.or.us/search/", status: "healthy", trades: ["general"] },
|
|
40
|
+
{ code: "PA", name: "Pennsylvania", portal: "https://www.pals.pa.gov/", status: "healthy", trades: ["general", "electrical", "hvac", "plumbing"] },
|
|
41
|
+
{ code: "RI", name: "Rhode Island", portal: "https://www.crb.ri.gov/", status: "healthy", trades: ["general"] },
|
|
42
|
+
{ code: "SC", name: "South Carolina", portal: "https://verify.llronline.com/", status: "healthy", trades: ["general", "electrical", "plumbing", "hvac"] },
|
|
43
|
+
{ code: "TN", name: "Tennessee", portal: "https://verify.tn.gov/", status: "healthy", trades: ["general", "electrical", "plumbing"] },
|
|
44
|
+
{ code: "TX", name: "Texas", portal: "https://www.tdlr.texas.gov/LicenseSearch/", status: "healthy", trades: ["hvac", "electrical", "plumbing"] },
|
|
45
|
+
{ code: "UT", name: "Utah", portal: "https://secure.utah.gov/llv/", status: "healthy", trades: ["general", "electrical", "plumbing", "hvac"] },
|
|
46
|
+
{ code: "VA", name: "Virginia", portal: "https://dporweb.dpor.virginia.gov/", status: "healthy", trades: ["general", "electrical", "plumbing", "hvac"] },
|
|
47
|
+
{ code: "VT", name: "Vermont", portal: "https://sos.vermont.gov/opr/", status: "healthy", trades: ["electrical", "plumbing"] },
|
|
48
|
+
{ code: "WA", name: "Washington", portal: "https://secure.lni.wa.gov/verify/", status: "healthy", trades: ["general"] },
|
|
49
|
+
{ code: "WV", name: "West Virginia", portal: "https://wvclboard.wv.gov/", status: "healthy", trades: ["general", "electrical", "hvac", "plumbing"] },
|
|
117
50
|
];
|
|
118
51
|
export async function handleListStates(args) {
|
|
119
52
|
const format = args.response_format ?? "markdown";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "contractor-license-mcp-server",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "MCP server for contractor license verification — verify licenses across US state licensing portals via AI agents like Claude Desktop",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|