@certscore/mcp 0.2.5 → 0.2.6

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/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  CertScore MCP exposes a focused Model Context Protocol server for CertScore Pulse workflows.
4
4
 
5
- Status: public developer preview. The server is distributed for external macOS MCP clients through Homebrew. Local WC01 development uses `pnpm mcp:certscore`.
5
+ Status: public developer preview. Version 0.2.6 is available as a Homebrew/npm stdio server and as a hosted OAuth-protected Streamable HTTP service. Local WC01 development uses `pnpm mcp:certscore`.
6
6
 
7
7
  Public docs:
8
8
 
@@ -13,16 +13,16 @@ Public docs:
13
13
 
14
14
  ## Tools
15
15
 
16
- - `create_scan` - Deprecated compatibility alias of scan_site. Removed in 0.2.0. Use scan_site. Start a CertScore Pulse scan for a public URL and return immediately with status, scan, and polling links.
17
- - `scan_site` - Start or reuse a CertScore public-web scan for a public URL.
18
- - `get_scan` - Retrieve the API v2 public-safe scan resource for a stable scan ID.
19
- - `get_scan_status` - Pass scanId (preferred, API v2). Pass jobId only for a just-created scan that has not yet returned a scanId.
20
- - `get_report` - Retrieve a summary CertScore Pulse report by stable scan ID. Use get_evidence for the larger bounded evidence packet.
16
+ - `create_scan` - Deprecated compatibility alias of scan_site. Use scan_site for new integrations. Returns completed-limited no-go disposition and reason-specific guidance when applicable.
17
+ - `scan_site` - Start or reuse a CertScore public-web scan. Completed no-go scans return completed_limited status, structured reason-specific guidance, and timing when available.
18
+ - `get_scan` - Retrieve the API v2 public-safe scan resource, including completed-limited no-go disposition, reason-specific guidance, and timing when available.
19
+ - `get_scan_status` - Retrieve terminal status, including completed_limited no-go disposition and reason-specific guidance. Pass jobId only before a stable scanId is available.
20
+ - `get_report` - Retrieve a summary Pulse report, including customer-safe no-go messaging when coverage is completed-limited. Use get_evidence for the larger bounded packet.
21
21
  - `get_evidence` - Retrieve the bounded structured Evidence JSON packet for a stable scan ID. Excludes raw cookie values, raw bodies, sensitive payloads, full DOM, and unredacted query values.
22
- - `export_findings` - Return structured findings from a CertScore Pulse report for downstream review or ticketing workflows.
22
+ - `export_findings` - Return structured findings plus completed-limited no-go disposition and guidance for downstream review or ticketing workflows.
23
23
  - `list_findings` - List API v2 public-safe findings already projected for a scan.
24
24
  - `get_pre_consent_cookies_trackers` - Retrieve the public-safe Cookies & Trackers (Pre-consent) report table as compact JSON for a scan.
25
- - `explain_finding` - Explain a single CertScore finding with public evidence, caveats, and reviewer next steps.
25
+ - `explain_finding` - Explain one projected finding with public evidence, caveats, reviewer next steps, and reason-specific no-go context when applicable.
26
26
  - `get_latest_domain_scan` - Retrieve the latest eligible API v2 public-safe scan for a domain.
27
27
  - `get_latest_domain_pre_consent_cookies_trackers` - Retrieve the public-safe Cookies & Trackers (Pre-consent) table from the latest eligible scan for a domain.
28
28
 
@@ -38,6 +38,27 @@ MCP tools backed by API v2 scan resources return scan timing when CertScore has
38
38
 
39
39
  This applies to `scan_site` when it returns an API v2 scan resource or job, `get_scan`, and `get_scan_status` when called with a `scanId`. `scanTimeSeconds: null` means timing is unavailable or incomplete and should not be displayed as `0`.
40
40
 
41
+ ## Completed-Limited No-Go Results
42
+
43
+ No-go scans are usable terminal results, not transport failures. Relevant tools retain `status: "completed_limited"`, `resultDisposition: "no_go"`, the stable reason code, customer-safe title and explanation, `limitationKind` attribution, retry guidance, and a bounded `evidenceExcerpt` when retained. Unknown future reasons use generic customer copy while remaining structured as `reasonCode: "unknown"`.
44
+
45
+ ## Hosted Streamable HTTP
46
+
47
+ OAuth-capable MCP clients can connect to:
48
+
49
+ ```text
50
+ https://mcp.certscore.ai/mcp
51
+ ```
52
+
53
+ Discovery endpoints:
54
+
55
+ ```text
56
+ https://mcp.certscore.ai/.well-known/oauth-protected-resource
57
+ https://certscore.ai/.well-known/oauth-authorization-server
58
+ ```
59
+
60
+ The hosted service uses OAuth authorization code with PKCE. Default read access requests `scan:read mcp`; support-gated scan creation additionally requests `scan:create`. The same tool implementation and output contracts power stdio and hosted transports.
61
+
41
62
  ## Configuration
42
63
 
43
64
  Install with Homebrew on macOS:
@@ -95,7 +116,7 @@ CERTSCORE_REQUEST_TIMEOUT_MS=300000
95
116
 
96
117
  ## API Key Access
97
118
 
98
- MCP clients usually need `scan:read`, `scan:create`, and `mcp` scopes. Request developer-preview access by emailing `support@certscore.ai` with your organization, MCP client, expected workflow, expected request volume, contact email, and requested scopes.
119
+ Stdio API keys use `pulse:read` and `mcp`; creating scans additionally requires `pulse:scan`. Hosted OAuth uses `scan:read` and `mcp`, with support-gated `scan:create`. Request scan-creation access by emailing `support@certscore.ai` with your organization, MCP client, expected workflow, expected request volume, and contact email.
99
120
 
100
121
  ## Verify Install
101
122