@qulib/mcp 0.4.0 → 0.4.1

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.
@@ -3,20 +3,44 @@ export declare function buildCompactAnalyzePayload(result: AnalyzeResult, includ
3
3
  includeFullReport: boolean;
4
4
  note: string;
5
5
  detectedAuth?: {
6
- type: "unknown" | "form-login" | "none" | "oauth" | "magic-link";
6
+ type: "unknown" | "form-login" | "oauth" | "magic-link" | "none";
7
7
  loginUrl: string | null;
8
- hasAuth: boolean;
9
8
  provider: string | null;
9
+ hasAuth: boolean;
10
10
  observedSelectors: {
11
11
  usernameSelector: string | null;
12
12
  passwordSelector: string | null;
13
13
  submitSelector: string | null;
14
14
  } | null;
15
15
  oauthButtons: {
16
- provider: string;
17
16
  text: string;
17
+ provider: string;
18
18
  }[];
19
19
  recommendation: string;
20
+ authOptions?: {
21
+ type: "unknown" | "form-login" | "oauth" | "oauth-unknown" | "form-multi" | "magic-link";
22
+ label: string;
23
+ id: string;
24
+ provider: string | null;
25
+ source: "built-in" | "user-local" | "heuristic";
26
+ automatable: boolean;
27
+ confidence: "high" | "medium" | "low";
28
+ requirements: {
29
+ method: "storage-state";
30
+ instruction: string;
31
+ } | {
32
+ method: "credentials";
33
+ fields: {
34
+ type: "password" | "text" | "email" | "select" | "checkbox";
35
+ name: string;
36
+ label: string;
37
+ observedOptions: string[];
38
+ }[];
39
+ } | {
40
+ method: "unknown";
41
+ instruction: string;
42
+ };
43
+ }[] | undefined;
20
44
  } | undefined;
21
45
  repoInventory: {
22
46
  scannedAt: string;
@@ -1 +1 @@
1
- {"version":3,"file":"compact-analyze-payload.d.ts","sourceRoot":"","sources":["../src/compact-analyze-payload.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAqBjD,wBAAgB,0BAA0B,CAAC,MAAM,EAAE,aAAa,EAAE,iBAAiB,EAAE,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBAkFs3L,CAAC;2BAA6C,CAAC;0BAA4C,CAAC;yBAA2C,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4BAAkqT,CAAC;sBAA4C,CAAC;sBAA4C,CAAC;iBAAuC,CAAC;;;;;;;;;;;;;;;;;uBAAghB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;EAD/4gB"}
1
+ {"version":3,"file":"compact-analyze-payload.d.ts","sourceRoot":"","sources":["../src/compact-analyze-payload.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAqBjD,wBAAgB,0BAA0B,CAAC,MAAM,EAAE,aAAa,EAAE,iBAAiB,EAAE,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBAkFs3L,CAAC;2BAA6C,CAAC;0BAA4C,CAAC;yBAA2C,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4BAAkqT,CAAC;sBAA4C,CAAC;sBAA4C,CAAC;iBAAuC,CAAC;;;;;;;;;;;;;;;;;uBAAghB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;EAD/4gB"}
package/dist/index.js CHANGED
@@ -83,7 +83,7 @@ function validateAbsoluteRepoPath(repoPath) {
83
83
  }
84
84
  const mcpServer = new McpServer({
85
85
  name: 'qulib-mcp',
86
- version: '0.4.0',
86
+ version: '0.4.1',
87
87
  description: 'Qulib QA intelligence platform — gap analysis, auth exploration, and quality scoring for deployed web applications',
88
88
  }, {
89
89
  capabilities: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qulib/mcp",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "MCP server for Qulib — AI-callable QA gap analysis",
5
5
  "license": "MIT",
6
6
  "author": "Tapesh Nagarwal",
@@ -33,7 +33,7 @@
33
33
  },
34
34
  "dependencies": {
35
35
  "@modelcontextprotocol/sdk": "^1.0.0",
36
- "@qulib/core": "0.4.0",
36
+ "@qulib/core": "0.4.1",
37
37
  "zod": "^3.23.0"
38
38
  },
39
39
  "devDependencies": {