contractor-license-mcp-server 0.6.2 → 0.6.3
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/schemas.d.ts +24 -62
- package/package.json +4 -5
package/dist/schemas.d.ts
CHANGED
|
@@ -1,76 +1,38 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
export declare const VerifyInputSchema: z.ZodObject<{
|
|
3
|
-
state: z.
|
|
3
|
+
state: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
|
|
4
4
|
license_number: z.ZodString;
|
|
5
5
|
trade: z.ZodDefault<z.ZodString>;
|
|
6
6
|
force_refresh: z.ZodDefault<z.ZodBoolean>;
|
|
7
|
-
response_format: z.ZodDefault<z.ZodEnum<
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
force_refresh: boolean;
|
|
13
|
-
response_format: "markdown" | "json";
|
|
14
|
-
}, {
|
|
15
|
-
state: string;
|
|
16
|
-
license_number: string;
|
|
17
|
-
trade?: string | undefined;
|
|
18
|
-
force_refresh?: boolean | undefined;
|
|
19
|
-
response_format?: "markdown" | "json" | undefined;
|
|
20
|
-
}>;
|
|
7
|
+
response_format: z.ZodDefault<z.ZodEnum<{
|
|
8
|
+
markdown: "markdown";
|
|
9
|
+
json: "json";
|
|
10
|
+
}>>;
|
|
11
|
+
}, z.core.$strip>;
|
|
21
12
|
export declare const BatchInputSchema: z.ZodObject<{
|
|
22
13
|
licenses: z.ZodArray<z.ZodObject<{
|
|
23
|
-
state: z.
|
|
14
|
+
state: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
|
|
24
15
|
license_number: z.ZodString;
|
|
25
16
|
trade: z.ZodDefault<z.ZodString>;
|
|
26
|
-
},
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
license_number: string;
|
|
33
|
-
trade?: string | undefined;
|
|
34
|
-
}>, "many">;
|
|
35
|
-
response_format: z.ZodDefault<z.ZodEnum<["markdown", "json"]>>;
|
|
36
|
-
}, "strip", z.ZodTypeAny, {
|
|
37
|
-
response_format: "markdown" | "json";
|
|
38
|
-
licenses: {
|
|
39
|
-
state: string;
|
|
40
|
-
license_number: string;
|
|
41
|
-
trade: string;
|
|
42
|
-
}[];
|
|
43
|
-
}, {
|
|
44
|
-
licenses: {
|
|
45
|
-
state: string;
|
|
46
|
-
license_number: string;
|
|
47
|
-
trade?: string | undefined;
|
|
48
|
-
}[];
|
|
49
|
-
response_format?: "markdown" | "json" | undefined;
|
|
50
|
-
}>;
|
|
17
|
+
}, z.core.$strip>>;
|
|
18
|
+
response_format: z.ZodDefault<z.ZodEnum<{
|
|
19
|
+
markdown: "markdown";
|
|
20
|
+
json: "json";
|
|
21
|
+
}>>;
|
|
22
|
+
}, z.core.$strip>;
|
|
51
23
|
export declare const SearchInputSchema: z.ZodObject<{
|
|
52
|
-
state: z.
|
|
24
|
+
state: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
|
|
53
25
|
name: z.ZodString;
|
|
54
26
|
trade: z.ZodDefault<z.ZodString>;
|
|
55
27
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
56
|
-
response_format: z.ZodDefault<z.ZodEnum<
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
response_format: "markdown" | "json";
|
|
62
|
-
limit: number;
|
|
63
|
-
}, {
|
|
64
|
-
name: string;
|
|
65
|
-
state: string;
|
|
66
|
-
trade?: string | undefined;
|
|
67
|
-
response_format?: "markdown" | "json" | undefined;
|
|
68
|
-
limit?: number | undefined;
|
|
69
|
-
}>;
|
|
28
|
+
response_format: z.ZodDefault<z.ZodEnum<{
|
|
29
|
+
markdown: "markdown";
|
|
30
|
+
json: "json";
|
|
31
|
+
}>>;
|
|
32
|
+
}, z.core.$strip>;
|
|
70
33
|
export declare const StatesInputSchema: z.ZodObject<{
|
|
71
|
-
response_format: z.ZodDefault<z.ZodEnum<
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
}>;
|
|
34
|
+
response_format: z.ZodDefault<z.ZodEnum<{
|
|
35
|
+
markdown: "markdown";
|
|
36
|
+
json: "json";
|
|
37
|
+
}>>;
|
|
38
|
+
}, z.core.$strip>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "contractor-license-mcp-server",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.3",
|
|
4
4
|
"description": "Real-time contractor license verification across 45 US states. MCP server for Claude Desktop and other AI agents — verify license status, expiration, and disciplinary history directly against state licensing board portals.",
|
|
5
5
|
"mcpName": "io.github.Noquarter6/contractor-license-mcp-server",
|
|
6
6
|
"type": "module",
|
|
@@ -32,12 +32,11 @@
|
|
|
32
32
|
"license": "MIT",
|
|
33
33
|
"repository": {
|
|
34
34
|
"type": "git",
|
|
35
|
-
"url": "git+https://github.com/Noquarter6/
|
|
36
|
-
"directory": "mcp-server"
|
|
35
|
+
"url": "git+https://github.com/Noquarter6/contractor-license-mcp-server.git"
|
|
37
36
|
},
|
|
38
|
-
"homepage": "https://github.com/Noquarter6/
|
|
37
|
+
"homepage": "https://github.com/Noquarter6/contractor-license-mcp-server#readme",
|
|
39
38
|
"bugs": {
|
|
40
|
-
"url": "https://github.com/Noquarter6/
|
|
39
|
+
"url": "https://github.com/Noquarter6/contractor-license-mcp-server/issues"
|
|
41
40
|
},
|
|
42
41
|
"engines": {
|
|
43
42
|
"node": ">=20.0.0"
|