contractor-license-mcp-server 0.2.0 → 0.3.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 +91 -0
- package/package.json +1 -1
package/dist/tools/states.js
CHANGED
|
@@ -2,6 +2,13 @@ import { formatStatesList } from "../format.js";
|
|
|
2
2
|
// Hardcoded until backend exposes a /states endpoint (Phase 2B+).
|
|
3
3
|
// Update this list when new scrapers are registered.
|
|
4
4
|
const SUPPORTED_STATES = [
|
|
5
|
+
{
|
|
6
|
+
code: "AR",
|
|
7
|
+
name: "Arkansas",
|
|
8
|
+
portal: "https://www.aclb.arkansas.gov/",
|
|
9
|
+
status: "healthy",
|
|
10
|
+
trades: ["general"],
|
|
11
|
+
},
|
|
5
12
|
{
|
|
6
13
|
code: "CA",
|
|
7
14
|
name: "California",
|
|
@@ -9,6 +16,13 @@ const SUPPORTED_STATES = [
|
|
|
9
16
|
status: "healthy",
|
|
10
17
|
trades: ["general"],
|
|
11
18
|
},
|
|
19
|
+
{
|
|
20
|
+
code: "DC",
|
|
21
|
+
name: "District of Columbia",
|
|
22
|
+
portal: "https://dcra.dc.gov/",
|
|
23
|
+
status: "healthy",
|
|
24
|
+
trades: ["general"],
|
|
25
|
+
},
|
|
12
26
|
{
|
|
13
27
|
code: "FL",
|
|
14
28
|
name: "Florida",
|
|
@@ -16,6 +30,76 @@ const SUPPORTED_STATES = [
|
|
|
16
30
|
status: "healthy",
|
|
17
31
|
trades: ["general"],
|
|
18
32
|
},
|
|
33
|
+
{
|
|
34
|
+
code: "GA",
|
|
35
|
+
name: "Georgia",
|
|
36
|
+
portal: "https://verify.sos.ga.gov/",
|
|
37
|
+
status: "degraded",
|
|
38
|
+
trades: ["general"],
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
code: "IL",
|
|
42
|
+
name: "Illinois",
|
|
43
|
+
portal: "https://idfpr.illinois.gov/",
|
|
44
|
+
status: "healthy",
|
|
45
|
+
trades: ["general"],
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
code: "MS",
|
|
49
|
+
name: "Mississippi",
|
|
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
|
+
},
|
|
19
103
|
{
|
|
20
104
|
code: "TX",
|
|
21
105
|
name: "Texas",
|
|
@@ -23,6 +107,13 @@ const SUPPORTED_STATES = [
|
|
|
23
107
|
status: "healthy",
|
|
24
108
|
trades: ["hvac", "electrical"],
|
|
25
109
|
},
|
|
110
|
+
{
|
|
111
|
+
code: "WA",
|
|
112
|
+
name: "Washington",
|
|
113
|
+
portal: "https://secure.lni.wa.gov/verify/",
|
|
114
|
+
status: "healthy",
|
|
115
|
+
trades: ["general"],
|
|
116
|
+
},
|
|
26
117
|
];
|
|
27
118
|
export async function handleListStates(args) {
|
|
28
119
|
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.3.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": {
|