> ## Documentation Index
> Fetch the complete documentation index at: https://docs.grantex.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Conformance Status

> How to obtain current, reproducible Grantex conformance results.

## Source of Truth

Conformance results are generated artifacts, not permanent product claims. The current status for a commit is the corresponding CI run and its machine-readable report. This page intentionally does not publish a hand-maintained “latest” pass count, date, duration, or production result because those values become stale as suites change.

<Info>
  Use the commit SHA, conformance package version, base URL, selected extensions, and generated JSON report together when citing a result.
</Info>

## Current Suite Inventory

The repository currently defines these core suites:

* `health`, `agents`, `authorize`, `token`, `token-refresh`, and `tokens`
* `grants`, `delegation`, and `audit`
* `security` and `rate-limit-headers`

Optional suites cover:

* `policies`, `webhooks`, `scim`, and `sso`
* `anomalies`, `compliance`, and `principal-sessions`

Suite membership and test counts are determined by the installed `@grantex/conformance` version. Do not infer today's count from an older report.

## Generate a Reproducible Report

```bash theme={null}
npx @grantex/conformance \
  --base-url https://api.grantex.dev \
  --api-key "$GRANTEX_API_KEY" \
  --include policies,webhooks,scim,sso,anomalies,compliance,principal-sessions \
  --format json > conformance-results.json
```

The command exits with status `0` when no selected test failed, `1` when at least one selected test failed, and `2` when the runner itself could not complete.

Store the following alongside the report:

```bash theme={null}
git rev-parse HEAD
npm view @grantex/conformance version
```

<Warning>
  A report against one deployment does not certify another deployment, and a general Grantex conformance report does not by itself approve an MCP certification application.
</Warning>

See the [Conformance Suite guide](/integrations/conformance) for CLI options and suite selection.
